Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName mysite.com
  3. ServerAdmin webmaster@localhost
  4.  
  5. DocumentRoot /var/www/mysite/htdocs
  6.  
  7. <Directory /var/www/mysite/htdocs/>
  8. Options Indexes FollowSymLinks MultiViews
  9. AllowOverride All
  10. Order allow,deny
  11. allow from all
  12. </Directory>
  13.  
  14. LogLevel warn
  15. ErrorLog "|/usr/sbin/rotatelogs /var/www/mysite/log/apache/error_log.%Y-%m-%d-%H 86400"
  16. CustomLog "|/usr/sbin/rotatelogs /var/www/mysite/log/apache/access_log.%Y-%m-%d-%H 86400" combined
  17.  
  18. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement