Changes of Revision 2
[-] | Changed | apache2-mod_fcgid.changes |
x 1
2 ------------------------------------------------------------------- 3 +Sat Dec 4 13:20:55 UTC 2010 - poeml@cmdline.net 4 + 5 +- update to 2.3.6 6 + *) SECURITY: CVE-2010-3872 (cve.mitre.org) 7 + Fix possible stack buffer overwrite. 8 + *) Change the default for FcgidMaxRequestLen from 1GB to 128K. 9 + Administrators should change this to an appropriate value based on 10 + site requirements. 11 + *) Allow FastCGI apps more time to exit at shutdown before being 12 + forcefully killed. 13 + ...and more fixes, see 14 + http://svn.apache.org/viewvc/httpd/mod_fcgid/tags/2.3.6/CHANGES-FCGID?view=markup 15 +- adjust the somewhat outdated example config file 16 + 17 +------------------------------------------------------------------- 18 Thu Aug 5 01:06:32 UTC 2010 - mrueckert@suse.de 19 20 - update to version 2.3.5 21 |
||
[-] | Changed | apache2-mod_fcgid.spec ^ |
26 1
2 # 3 -# spec file for package apache2-mod_fcgid (Version 2.3.5) 4 +# spec file for package apache2-mod_fcgid (Version 2.3.6) 5 # 6 # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. 7 # 8
9 %define apache_sysconfdir %(%{apxs} -q SYSCONFDIR) 10 %define apache_mmn %(MMN=$(%{apxs} -q LIBEXECDIR)_MMN; test -x $MMN && $MMN) 11 # 12 -Version: 2.3.5 13 +Version: 2.3.6 14 Release: 1 15 # 16 Group: Productivity/Networking/Web/Servers 17
18 Requires: apache2 %{apache_mmn} 19 # 20 Url: http://httpd.apache.org/mod_fcgid/ 21 -Source: http://mirror.synyx.de/apache/httpd/mod_fcgid/mod_fcgid-2.3.5.tar.bz2 22 +Source: http://mirror.synyx.de/apache/httpd/mod_fcgid/mod_fcgid-%{version}.tar.bz2 23 Source1: apache2-mod_fcgid.conf 24 Patch: mod_fcgid-2.3.5_suse_paths.patch 25 # 26 |
||
[+] | Changed | apache2-mod_fcgid.conf ^ |
@@ -2,7 +2,9 @@ ## ## Sample config for apache2_mod-fcgid ## -## All lines, that are commented out, reflect the default values. +## Most lines, that are commented out, reflect the default values. +## +## See http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html for the real documentation ## <IfModule fcgid_module> @@ -61,59 +63,50 @@ ## higher than SpawnScoreUpLimit, the spawning will be held for a while. The ## higher this number is, the higher speed of the spawning can be. ## -#FcgidSpawnScoreUpLimit n (10) +#FcgidSpawnScoreUpLimit 10 ## ## The weight of spawning. This weight will be plused to the spawn-control ## score on every spawn. The higher this number is, the lower speed of spawning ## can be. ## -#FcgidSpawnScore n (1) +#FcgidSpawnScore 1 ## ## The weight of termination. This weight will be plused to the score while ## fastcgi process terminates. The higher this number is, the lower speed of ## spawning can be. ## -#FcgidTerminationScore n (2) +#FcgidTerminationScore 2 ## ## The max count of total fastcgi process count. ## -#FcgidMaxProcesses n (1000) +#FcgidMaxProcesses 1000 ## ## The maximum number of fastcgi application instances allowed to run for any ## one fastcgi application. ## -#FcgidMaxProcessesPerClass n (100) +#FcgidMaxProcessesPerClass 100 ## ## The default environment variables before a fastcgi application is spawned. -## You can set this configuration more than once. -## -#FcgidInitialEnv env_name env_value - -## -## The connect timeout to a fastcgi application. Value in seconds. +## You can use this configuration more than once. ## -## Default value: 2 -## -FcgidConnectTimeout 10 +#FcgidInitialEnv env_name [ env_value ] ## ## The communication timeout to a fastcgi application. Please increase this ## value if your CGI have a slow initialization or slow respond. Value in ## seconds. ## -## Default value: 5 -## -FcgidIOTimeout 40 +#FcgidIOTimeout 40 ## -## CGI output cache buffer size. Value in kilobytes. +## CGI output cache buffer size. Value in bytes. ## -#FcgidOutputBufferSize 64 +#FcgidOutputBufferSize 65536 ## ## Associate .fcgi files with mod_fcgid @@ -124,11 +117,12 @@ ## PHP via FastCGI ## ## uncomment the following line if you want to handle php via mod_fcgid +## see http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html#examples ## #<FilesMatch "\.php$"> # AddHandler fcgid-script .php -# FcgidWrapper /srv/www/cgi-bin/php5 .php # Options +ExecCGI +# FcgidWrapper /srv/www/cgi-bin/php5 .php #</FilesMatch> ## </IfModule> | ||
Added | mod_fcgid-2.3.6.tar.bz2 ^ |