Advertisement
Guest User

ports.conf

a guest
Sep 22nd, 2014
2,757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 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.conf
  4.  
  5. NameVirtualHost *:80
  6. Listen 80
  7.  
  8. <IfModule mod_ssl.c>
  9. # If you add NameVirtualHost *:443 here, you will also have to change
  10. # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
  11. # to <VirtualHost *:443>
  12. # Server Name Indication for SSL named virtual hosts is currently not
  13. # supported by MSIE on Windows XP.
  14. NameVirtualHost *:443
  15. Listen 443
  16. </IfModule>
  17.  
  18. <IfModule mod_gnutls.c>
  19. Listen 443
  20. </IfModule>
  21.  
  22. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement