Advertisement
Guest User

Untitled

a guest
Dec 30th, 2013
893
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. 127.0.0.1 localhost
  2. 127.0.0.1 admin.localhost
  3. 127.0.0.1 api.localhost
  4. 127.0.0.1 cdn.localhost
  5. 127.0.0.1 demo.localhost
  6. 127.0.0.1 secure.localhost
  7.  
  8. <VirtualHost *:80>
  9. ServerName admin.localhost
  10. DocumentRoot c:/wamp/www/admin
  11. </VirtualHost>
  12.  
  13. <VirtualHost *:80>
  14. ServerName api.localhost
  15. DocumentRoot c:/wamp/www/api
  16. </VirtualHost>
  17.  
  18. <VirtualHost *:80>
  19. ServerName cdn.localhost
  20. DocumentRoot c:/wamp/www/cdn
  21. </VirtualHost>
  22.  
  23. <VirtualHost *:80>
  24. ServerName secure.localhost
  25. DocumentRoot c:/wamp/www/secure
  26. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement