Guest User

Untitled

a guest
Jan 23rd, 2018
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1.  
  2. <VirtualHost *:80>
  3. ServerName localhost
  4. DocumentRoot "C:/xampp/htdocs/"
  5. ServerAdmin webmaster@localhost
  6. <Directory "C:/xampp/htdocs/">
  7. Order allow,deny
  8. Allow from all
  9. </Directory>
  10. </VirtualHost>
  11.  
  12. <VirtualHost *:80>
  13. ServerName other.localhost
  14. DocumentRoot "C:/Sites/Other"
  15. ServerAdmin webmaster@localhost.other
  16. <Directory "c:/Sites/Other">
  17. Order allow,deny
  18. Allow from all
  19. </Directory>
  20. </VirtualHost>
  21.  
  22. <VirtualHost *:80>
  23. ServerName hexa.localhost
  24. DocumentRoot "C:/Sites/Hexa"
  25. ServerAdmin webmaster@localhost.hexa
  26. <Directory "c:/Sites/Hexa">
  27. Order allow,deny
  28. Allow from all
  29. </Directory>
  30. </VirtualHost>
Add Comment
Please, Sign In to add comment