Advertisement
nocturnalmk

confy vhost za windows

Feb 9th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. NameVirtualHost *:80
  2. <VirtualHost *:80>
  3. DocumentRoot "c:/xampp/htdocs"
  4. ServerName localhost
  5. </VirtualHost>
  6. <VirtualHost *:80>
  7. DocumentRoot "c:/xampp/htdocs/conferencesmanager/public"
  8. ServerName confy.local
  9. ServerAlias www.confy.local
  10. <Directory "c:/xampp/htdocs/conferencesmanager/public">
  11. Order allow,deny
  12. Allow from all
  13. AllowOverride all
  14. </Directory>
  15. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement