Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /etc/apache2/sites-available/default
  2. /etc/apache2/sites-available/project.conf
  3.  
  4. <VirtualHost *:80>
  5. ServerAdmin webmaster@localhost
  6.  
  7. DocumentRoot /var/www/project
  8. <Directory /var/www/project>
  9. Options FollowSymLinks
  10. AllowOverride None
  11. </Directory>
  12. <Directory /var/www/project>
  13. Options Indexes FollowSymLinks MultiViews
  14. AllowOverride None
  15. Order allow,deny
  16. allow from all
  17. </Directory>
  18.  
  19. ErrorLog ${APACHE_LOG_DIR}/project/error.log
  20. CustomLog ${APACHE_LOG_DIR}/project/access.log combined
  21. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement