/library/server/httpd/tests/apache2.conf

http://github.com/jocelyn/EiffelWebReloaded · Unknown · 64 lines · 54 code · 10 blank · 0 comment · 0 complexity · 9bcb1f8311b2348d94cb6c05993c4ba8 MD5 · raw file

  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. DocumentRoot /var/www
  4. <Directory />
  5. Options FollowSymLinks
  6. AllowOverride None
  7. </Directory>
  8. <Directory /var/www/>
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride None
  11. Order allow,deny
  12. allow from all
  13. </Directory>
  14. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  15. <Directory "/usr/lib/cgi-bin">
  16. AllowOverride None
  17. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  18. Order allow,deny
  19. Allow from all
  20. </Directory>
  21. ErrorLog ${APACHE_LOG_DIR}/error.log
  22. # Possible values include: debug, info, notice, warn, error, crit,
  23. # alert, emerg.
  24. LogLevel warn
  25. CustomLog ${APACHE_LOG_DIR}/access.log combined
  26. Alias /doc/ "/usr/share/doc/"
  27. <Directory "/usr/share/doc/">
  28. Options Indexes MultiViews FollowSymLinks
  29. AllowOverride None
  30. Order deny,allow
  31. Deny from all
  32. Allow from 127.0.0.0/255.0.0.0 ::1/128
  33. </Directory>
  34. <IfModule mod_fcgid.c>
  35. # FcgidIdleTimeout 600
  36. # FcgidBusyScanInterval 120
  37. # FcgidProcessLifeTime 0
  38. # #7200
  39. # FcgidMaxProcesses 1000
  40. # FcgidMaxProcessesPerClass 100
  41. # FcgidMinProcessesPerClass 100
  42. # FcgidConnectTimeout 8
  43. # FcgidIOTimeout 60
  44. # FcgidBusyTimeout 1200
  45. alias /eiffelweb/ "/home/jfiat/_dev/EiffelWebReloaded/library/fcgi/tests/EIFGENs/eiffelweb/W_code/"
  46. <Location /eiffelweb/>
  47. AddHandler fcgid-script .ews
  48. Options Indexes FollowSymLinks ExecCGI
  49. # Customize the next two directives for your requirements.
  50. Order allow,deny
  51. Allow from all
  52. </Location>
  53. </IfModule>
  54. </VirtualHost>