Advertisement
Guest User

vhosts

a guest
Feb 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # Virtual Hosts
  2. #
  3. <VirtualHost *:80>
  4. ServerName localhost
  5. ServerAlias localhost
  6. DocumentRoot "${INSTALL_DIR}/www"
  7. <Directory "${INSTALL_DIR}/www/">
  8. Options +Indexes +Includes +FollowSymLinks +MultiViews
  9. AllowOverride All
  10. Require local
  11. </Directory>
  12. </VirtualHost>
  13.  
  14.  
  15. <VirtualHost *:80>
  16. ServerName Karma-gaming.net
  17. DocumentRoot "c:/wamp64/www/karma-gaming.net"
  18. <Directory "c:/wamp64/www/karma-gaming.net/">
  19. Options +Indexes +Includes +FollowSymLinks +MultiViews
  20. AllowOverride All
  21. Require all granted
  22. </Directory>
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement