Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName localhost
  3. DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
  4. <Directory "/Applications/XAMPP/xamppfiles/htdocs">
  5. Options Indexes FollowSymLinks Includes execCGI
  6. AllowOverride All
  7. Require all granted
  8. </Directory>
  9. </VirtualHost>
  10.  
  11. <VirtualHost *:80>
  12. ServerName australia.example.com
  13. ServerAlias australia.example.com
  14. DocumentRoot "/Users/mark/australia"
  15. DocumentRoot "/Users/mark/Documents/australia"
  16. ErrorLog "logs/australia.log"
  17. CustomLog "logs/australia.log" combined
  18. <Directory "/Users/mark/australia">
  19. Options FollowSymLinks Indexes
  20. AllowOverride All
  21. Require all granted
  22. </Directory>
  23. </VirtualHost>
  24.  
  25. User mark
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement