Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@dummy-host.example.com
  3. DocumentRoot "/home/adam/Web/mydomain.de"
  4. ServerName mydomain.de
  5. ServerAlias www.mydomain.de
  6. ErrorLog "logs/mydomain.de-error_log"
  7. CustomLog "logs/mydomain.de-access_log" common
  8. </VirtualHost>
  9.  
  10. <VirtualHost *:80>
  11. ServerAdmin webmaster@dummy-host.example.com
  12. DocumentRoot "/opt/lampp/htdocs"
  13. ServerName mydomain.de
  14. ServerAlias www.mydomain.de
  15. ErrorLog "logs/mydomain.de-error_log"
  16. CustomLog "logs/mydomain.de-access_log" common
  17. </VirtualHost>
  18.  
  19. <VirtualHost *:80>
  20. ServerAdmin webmaster@dummy-host.example.com
  21. DocumentRoot "/home/adam/Web/mydomain.de"
  22. ServerName mydomain.de
  23. ServerAlias www.mydomain.de
  24. ErrorLog "logs/mydomain.de-error_log"
  25. CustomLog "logs/mydomain.de-access_log" common
  26.  
  27. <Directory >
  28. Options All
  29. AllowOverride All
  30. Require all granted
  31. </Directory>
  32. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement