Guest User

Untitled

a guest
Dec 11th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. NameVirtualHost 127.0.0.1
  2. <VirtualHost 127.0.0.1>
  3. ServerAdmin webmaster@localhost
  4. ServerName mysite
  5. DocumentRoot /home/kit/code/public_html/mysite
  6. <Directory /home/kit/code/public_html/mysite>
  7. Options Indexes FollowSymLinks MultiViews
  8. AllowOverride All
  9. Order allow,deny
  10. allow from all
  11. </Directory>
  12. ErrorLog /home/kit/code/public_html/mysite/logs/error.log
  13. LogLevel warn
  14. CustomLog /home/kit/code/public_html/mysite/logs/access.log combined
  15. ServerSignature On
  16. </VirtualHost>
Add Comment
Please, Sign In to add comment