fork download
  1. root@t2849:/var/www# cat /etc/apache2/sites-available/default
  2. <VirtualHost *:80>
  3. ServerAdmin root@localhost
  4.  
  5. DocumentRoot /var/www/
  6. <Directory /var/www/>
  7. Options FollowSymLinks
  8. AllowOverride None
  9. </Directory>
  10. <Directory /var/www/>
  11. Options Indexes FollowSymLinks MultiViews
  12. AllowOverride None
  13. Order allow,deny
  14. allow from all
  15. </Directory>
  16.  
  17. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  18. <Directory "/usr/lib/cgi-bin">
  19. AllowOverride None
  20. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  21. Order allow,deny
  22. Allow from all
  23. </Directory>
  24.  
  25. ErrorLog ${APACHE_LOG_DIR}/error.log
  26.  
  27. # Possible values include: debug, info, notice, warn, error, crit,
  28. # alert, emerg.
  29. LogLevel warn
  30.  
  31. CustomLog ${APACHE_LOG_DIR}/access.log combined
  32.  
  33. Alias /doc/ "/usr/share/doc/"
  34. <Directory "/usr/share/doc/">
  35. Options Indexes MultiViews FollowSymLinks
  36. AllowOverride None
  37. Order deny,allow
  38. Deny from all
  39. Allow from 127.0.0.0/255.0.0.0 ::1/128
  40. </Directory>
  41.  
  42. </VirtualHost>
  43.  
  44. root@t2849:/var/www# cat /etc/apache2/sites-available/blah.de
  45. <VirtualHost blah.de:80>
  46. ServerAdmin oli@blah.de
  47.  
  48. DocumentRoot /var/www/blah.de/
  49. <Directory /var/www/blah.de/>
  50. Options FollowSymLinks
  51. AllowOverride None
  52. </Directory>
  53. <Directory /var/www/blah.de/>
  54. Options Indexes FollowSymLinks MultiViews
  55. AllowOverride None
  56. Order allow,deny
  57. allow from all
  58. </Directory>
  59.  
  60. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  61. <Directory "/usr/lib/cgi-bin">
  62. AllowOverride None
  63. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  64. Order allow,deny
  65. Allow from all
  66. </Directory>
  67.  
  68. ErrorLog ${APACHE_LOG_DIR}/error.log
  69.  
  70. # Possible values include: debug, info, notice, warn, error, crit,
  71. # alert, emerg.
  72. LogLevel warn
  73.  
  74. CustomLog ${APACHE_LOG_DIR}/access.log combined
  75.  
  76. Alias /doc/ "/usr/share/doc/"
  77. <Directory "/usr/share/doc/">
  78. Options Indexes MultiViews FollowSymLinks
  79. AllowOverride None
  80. Order deny,allow
  81. Deny from all
  82. Allow from 127.0.0.0/255.0.0.0 ::1/128
  83. </Directory>
  84.  
  85. </VirtualHost>
  86.  
Runtime error #stdin #stdout 0.02s 5312KB
stdin
Standard input is empty
stdout
Standard output is empty