Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3.  
  4. DocumentRoot /var/www/
  5. ServerName dev
  6. <Directory /var/www/>
  7. Options Indexes FollowSymLinks MultiViews
  8. AllowOverride None
  9. Order allow,deny
  10. allow from all
  11. </Directory>
  12.  
  13. ErrorLog /var/www/log/dev-error.log
  14.  
  15. # Possible values include: debug, info, notice, warn, error, crit,
  16. # alert, emerg.
  17. LogLevel warn
  18.  
  19. CustomLog ${APACHE_LOG_DIR}/dev-access.log combined
  20. </VirtualHost>
  21.  
  22. <VirtualHost *:80>
  23. ServerAdmin webmaster@localhost
  24.  
  25. DocumentRoot /var/www/work/
  26. ServerName work.dev
  27. <Directory /var/www/work>
  28. Options Indexes FollowSymLinks MultiViews
  29. AllowOverride None
  30. Order allow,deny
  31. allow from all
  32. </Directory>
  33.  
  34. ErrorLog /var/www/log/work.dev-error.log
  35.  
  36. # Possible values include: debug, info, notice, warn, error, crit,
  37. # alert, emerg.
  38. LogLevel warn
  39.  
  40. CustomLog ${APACHE_LOG_DIR}/work.dev-access.log combined
  41. </VirtualHost>
  42.  
  43. <VirtualHost *:80>
  44. ServerAdmin webmaster@localhost
  45.  
  46. DocumentRoot /var/www/support.profit/
  47. ServerName support-profit.dev
  48. <Directory /var/www/support.profit>
  49. Options Indexes FollowSymLinks MultiViews
  50. AllowOverride None
  51. Order allow,deny
  52. allow from all
  53. </Directory>
  54.  
  55. ErrorLog /var/www/log/support-profit.dev-error.log
  56.  
  57. # Possible values include: debug, info, notice, warn, error, crit,
  58. # alert, emerg.
  59. LogLevel warn
  60.  
  61. CustomLog ${APACHE_LOG_DIR}/support-profit.access.log combined
  62. </VirtualHost>
  63.  
  64. <VirtualHost 172.17.172.111:80>
  65. ServerAdmin webmaster@localhost
  66.  
  67. DocumentRoot /var/www/qcrm-project/
  68. ServerName qcrm-project.dev
  69. <Directory /var/www/qcrm-project>
  70. Options Indexes FollowSymLinks MultiViews
  71. AllowOverride None
  72. Order allow,deny
  73. allow from all
  74. </Directory>
  75.  
  76. ErrorLog /var/www/log/qcrm-project.dev-error.log
  77.  
  78. # Possible values include: debug, info, notice, warn, error, crit,
  79. # alert, emerg.
  80. LogLevel warn
  81.  
  82. CustomLog ${APACHE_LOG_DIR}/qcrm-project.dev-access.log combined
  83. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement