galaxydata

fcgid.conf

Feb 17th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. # This is the Apache server configuration file for providing FastCGI support
  2. # via mod_fcgid
  3. #
  4. # Documentation is available at http://fastcgi.coremail.cn/doc.htm
  5.  
  6. LoadModule fcgid_module modules/mod_fcgid.so
  7.  
  8. <IfModule mod_fcgid.c>
  9.  
  10. <IfModule !mod_fastcgi.c>
  11.     AddHandler fcgid-script fcg fcgi fpl
  12. </IfModule>
  13.  
  14.   FcgidIPCDir /var/run/mod_fcgid/sock
  15.   FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm
  16.  
  17.   FcgidIdleTimeout 40
  18.   FcgidProcessLifeTime 30
  19.   FcgidMaxProcesses 20
  20.   FcgidMaxProcessesPerClass 8
  21.   FcgidMinProcessesPerClass 0
  22.   FcgidConnectTimeout 30
  23.   FcgidIOTimeout 45
  24.   FcgidInitialEnv RAILS_ENV production
  25.   FcgidIdleScanInterval 10
  26.  
  27. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment