27 lines
618 B
Plaintext
27 lines
618 B
Plaintext
# This is the Apache server configuration file for providing FastCGI support
|
|
# via mod_fcgid
|
|
#
|
|
# Documentation is available at http://fastcgi.coremail.cn/doc.htm
|
|
|
|
|
|
<IfModule mod_fcgid.c>
|
|
|
|
<IfModule !mod_fastcgi.c>
|
|
AddHandler fcgid-script fcg fcgi fpl
|
|
</IfModule>
|
|
|
|
FcgidIPCDir /var/lib/apache2/fcgid/sock
|
|
FcgidProcessTableFile /var/lib/apache2/fcgid/shm
|
|
|
|
FcgidIdleTimeout 40
|
|
FcgidProcessLifeTime 30
|
|
FcgidMaxProcesses 20
|
|
FcgidMaxProcessesPerClass 8
|
|
FcgidMinProcessesPerClass 0
|
|
FcgidConnectTimeout 30
|
|
FcgidIOTimeout 180
|
|
FcgidInitialEnv RAILS_ENV production
|
|
FcgidIdleScanInterval 10
|
|
|
|
</IfModule>
|