-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<IfModule mod_fcgid.c> | ||
ScriptAlias /fcgi-bin/ "/fcgi-bin/" | ||
<Location "/fcgi-bin/"> | ||
Options None | ||
Require all granted | ||
<IfModule mod_mime.c> | ||
AddHandler fcgid-script .fcgi | ||
</IfModule> | ||
</Location> | ||
# Set our environment variables for the IIP server | ||
FcgidInitialEnv VERBOSITY "1" | ||
FcgidInitialEnv LOGFILE "/var/log/iipsrv.log" | ||
FcgidInitialEnv MAX_IMAGE_CACHE_SIZE "10" | ||
FcgidInitialEnv JPEG_QUALITY "90" | ||
FcgidInitialEnv MAX_CVT "5000" | ||
FcgidInitialEnv MEMCACHED_SERVERS "localhost" | ||
|
||
# Define the idle timeout as unlimited and the number of | ||
# processes we want | ||
FcgidConnectTimeout 20 | ||
FcgidIdleTimeout 0 | ||
FcgidMaxProcessesPerClass 1 | ||
</IfModule> |