Advertisement
achshar

Untitled

Jan 27th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. NameVirtualHost *:80
  2.  
  3. <VirtualHost *:80>
  4. ServerName localhost
  5. DocumentRoot "F:/xampp/htdocs/"
  6. </VirtualHost>
  7. <VirtualHost *:80>
  8. ServerName local
  9. DocumentRoot "F:/Google Drive/Projects/local/"
  10. <Directory "F:/Google Drive/Projects/local/">
  11. Options All
  12. AllowOverride All
  13. Require all granted
  14. </Directory>
  15. </VirtualHost>
  16.  
  17. Listen 443
  18. NameVirtualHost *:443
  19. SSLStrictSNIVHostCheck off
  20.  
  21. <VirtualHost *:443>
  22. DocumentRoot "F:/Google Drive/Projects/local/"
  23. ServerName local
  24. <Directory "F:/Google Drive/Projects/local/">
  25. Options All
  26. AllowOverride All
  27. Require all granted
  28. </Directory>
  29. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement