Advertisement
Guest User

~/Sites/httpd-vhosts.conf

a guest
Jul 4th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | None | 0 0
  1. NameVirtualHost *:80
  2. <Directory "/Users/thomas/Sites">
  3.   Options Indexes FollowSymLinks MultiViews
  4.   AllowOverride All
  5.   Order allow,deny
  6.   Allow from all
  7. </Directory>
  8.  
  9. <VirtualHost _default_:80>
  10.   ServerName localhost
  11.   DocumentRoot /Library/WebServer/Documents
  12. </VirtualHost>
  13.  
  14. <VirtualHost *:80>
  15.     ServerName fotoparisberlin.local
  16.     DocumentRoot /Users/thomas/Sites/fotoparisberlin
  17. </VirtualHost>
  18. <VirtualHost *:80>
  19.     ServerName test.local
  20.     DocumentRoot /Users/thomas/Sites/test
  21. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement