Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <VirtualHost *:8080>
  2. ServerName [project_name]
  3. ServerAdmin jorgeharryd.fernandez@gmail.com
  4. DocumentRoot /var/www/[dirname]
  5. ErrorLog ${APACHE_LOG_DIR}/[project_name]-error.log
  6. CustomLog ${APACHE_LOG_DIR}/[project_name]-access.log combined
  7.  
  8. <Directory "/var/www/[dirname]">
  9. Order allow,deny
  10. Allow from all
  11. Options FollowSymLinks ExecCGI
  12. AllowOverride All
  13. Require all granted
  14. Options +Indexes
  15. </Directory>
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement