Guest User

Untitled

a guest
Mar 4th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <VirtualHost *:80>
  2. SSLEngine off
  3. SSLProxyEngine off
  4. ServerAdmin admin@<ДОМЕН_САЙТА>
  5. DocumentRoot "/srv/www/sites/<ДОМЕН_САЙТА>"
  6. ServerName <ДОМЕН_САЙТА>
  7. HostnameLookups On
  8. UseCanonicalName On
  9. ErrorLog /var/log/apache2/<ДОМЕН_САЙТА>/error.log
  10. CustomLog /var/log/apache2/<ДОМЕН_САЙТА>/access.log combined
  11.  
  12. <Directory "/srv/www/sites/<ДОМЕН_САЙТА>">
  13. DirectoryIndex index.php
  14. Options Includes FollowSymLinks
  15. AllowOverride All
  16. Order allow,deny
  17. Allow from all
  18. Satisfy all
  19. </Directory>
  20. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment