Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <VirtualHost *:80>
  2. DocumentRoot "D:/Website/root"
  3. ServerName localhost
  4.  
  5. <Directory "D:/Website/root">
  6. Options Indexes FollowSymLinks Includes ExecCGI
  7. AllowOverride All
  8. Order deny,allow
  9. deny from all
  10. Allow from localhost
  11. </Directory>
  12. </VirtualHost>
  13.  
  14. <VirtualHost *:80>
  15. DocumentRoot "D:/Website/dev"
  16. ServerName dev
  17.  
  18. <Directory "D:/Website/dev">
  19. Options Indexes FollowSymLinks Includes ExecCGI
  20. AllowOverride All
  21. Order deny,allow
  22. deny from all
  23. Allow from localhost
  24. Require all granted
  25. </Directory>
  26. </VirtualHost>
  27.  
  28. # localhost name resolution is handled within DNS itself.
  29. 127.0.0.1 localhost
  30. 127.0.0.1 dev
  31.  
  32. VirtualHost configuration: *:80 is a NameVirtualHost
  33. default server localhost (C:/xampp/apache/conf/extra/httpd-vhosts.conf:44)
  34. port 80 namevhost localhost (C:/xampp/apache/conf/extra/httpd-vhosts.conf:44)
  35. port 80 namevhost dev (C:/xampp/apache/conf/extra/httpd-vhosts.conf:60)
  36. ServerRoot: "C:/xampp/apache"
  37. Main DocumentRoot: "D:/Website/root"
  38. Main ErrorLog: "C:/xampp/apache/logs/error.log"
  39. Mutex rewrite-map: using_defaults
  40. Mutex ssl-stapling: using_defaults
  41. Mutex proxy: using_defaults
  42. Mutex ssl-cache: using_defaults
  43. Mutex default: dir="C:/xampp/apache/logs/" mechanism=default
  44. PidFile: "C:/xampp/apache/logs/httpd.pid"
  45. Define: DUMP_VHOSTS
  46. Define: DUMP_RUN_CFG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement