Guest User

Untitled

a guest
Jul 15th, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. ServerName mydomain.ru
  4. DocumentRoot /var/www
  5. <Directory />
  6. Options FollowSymLinks
  7. AllowOverride None
  8. </Directory>
  9. <Directory /var/www/>
  10. Options FollowSymLinks +ExecCGI
  11. AllowOverride None
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15.  
  16. ErrorLog ${APACHE_LOG_DIR}/error.log
  17.  
  18. # Possible values include: debug, info, notice, warn, error, crit,
  19. # alert, emerg.
  20. LogLevel warn
  21.  
  22. CustomLog ${APACHE_LOG_DIR}/access.log combined
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment