25 lines
551 B
Plaintext
25 lines
551 B
Plaintext
LoadModule fcgid_module modules/mod_fcgid.so
|
|
|
|
<IfModule mod_fcgid.c>
|
|
AddHandler fcgid-script .fcgi
|
|
FcgidMaxProcessesPerClass 1
|
|
FcgidMinProcessesPerClass 1
|
|
FcgidIdleTimeout 30
|
|
FcgidProcessLifeTime 30
|
|
</IfModule>
|
|
|
|
Alias /fcgi-bin/ /user/service/httpd/fcgi-bin/
|
|
|
|
<Directory /user/service/httpd/fcgi-bin/>
|
|
SetHandler fcgid-script
|
|
Options +ExecCGI
|
|
SSLRequireSSL
|
|
|
|
# Customize the next two directives for your requirements.
|
|
Order allow,deny
|
|
Allow from all
|
|
<LimitExcept POST>
|
|
Deny from all
|
|
</LimitExcept>
|
|
</Directory>
|