Advertisement
r109

WAMP httpd.vhosts.conf

Mar 15th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. #Example of WAMP httpd.vhosts.conf
  2.  
  3. <Directory C:\SyncApp\www>
  4. AllowOverride All
  5. Order Deny,Allow  
  6. Allow from all
  7. </Directory>
  8.  
  9. <VirtualHost *:80>
  10. ServerName wordpress.local
  11. DocumentRoot "C:\SyncApp\www\wordpress"
  12. </VirtualHost>
  13.  
  14. <VirtualHost *:80>
  15. ServerName sandbox.local
  16. DocumentRoot "C:\SyncApp\www\sandbox"
  17. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement