Advertisement
brianatlarge

ports conf

Dec 5th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. # If you just change the port or add more ports here, you will likely also
  2. # have to change the VirtualHost statement in
  3. # /etc/apache2/sites-enabled/000-default
  4. # This is also true if you have upgraded from before 2.2.9-3 (i.e. from
  5. # Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
  6. # README.Debian.gz
  7.  
  8. NameVirtualHost *:80
  9. Listen 80
  10.  
  11. <IfModule mod_ssl.c>
  12.     # If you add NameVirtualHost *:443 here, you will also have to change
  13.     # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
  14.     # to <VirtualHost *:443>
  15.     # Server Name Indication for SSL named virtual hosts is currently not
  16.     # supported by MSIE on Windows XP.
  17.     Listen 443
  18. </IfModule>
  19.  
  20. <IfModule mod_gnutls.c>
  21.     Listen 443
  22. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement