phpist

Untitled

Dec 30th, 2019
727
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 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. Listen 127.0.0.1:8080
  6.  
  7. <IfModule ssl_module>
  8. Listen 443
  9. </IfModule>
  10.  
  11. <IfModule mod_gnutls.c>
  12. Listen 443
  13. </IfModule>
  14.  
  15. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
  16.  
  17. ports.conf
  18.  
  19.  
  20. <VirtualHost 127.0.0.1:8080>
  21. ServerAdmin [email protected]
  22. ServerName php.xxx
  23. ServerAlias www.php.xxx
  24. DocumentRoot /var/www/php.xxx
  25. ErrorLog ${APACHE_LOG_DIR}/error.log
  26. CustomLog ${APACHE_LOG_DIR}/access.log combined
  27. </VirtualHost>
  28.  
  29. php.xxx.conf
Advertisement
Add Comment
Please, Sign In to add comment