/library/server/rest/tests/htdocs/README.txt

http://github.com/jocelyn/EiffelWebReloaded · Plain Text · 31 lines · 25 code · 6 blank · 0 comment · 0 complexity · f145c5eadb836af92008b2eec1ef1fbd MD5 · raw file

  1. = How to make this works with Apache =
  2. * In the apache's configuration file, be sure to add the following, or similar
  3. LoadModule fcgid_module modules/mod_fcgid.so
  4. <IfModule mod_fcgid.c>
  5. FcgidIdleTimeout 60
  6. FcgidBusyScanInterval 120
  7. FcgidProcessLifeTime 1600
  8. #7200
  9. FcgidMaxProcesses 5
  10. FcgidMaxProcessesPerClass 100
  11. FcgidMinProcessesPerClass 100
  12. FcgidConnectTimeout 8
  13. FcgidIOTimeout 3000
  14. FcgidBusyTimeout 3200
  15. FcgidMaxRequestLen 10000000
  16. FcgidPassHeader Authorization
  17. </IfModule>
  18. alias /REST/ "c:/_dev/Dev-Process/src/server/htdocs/"
  19. <directory "c:/_dev/Dev-Process/src/server/htdocs/">
  20. AllowOverride All
  21. Order allow,deny
  22. Allow from all
  23. </directory>
  24. * You can use <Location>, but then the AllowOverride All, should be somewhere else, since <Location> does not allow it.
  25. * And then, check the .htaccess from this folder for additional settings (but required)