- Upstream moved to apache.org
- License changed to ASL 2.0
- Configuration directives have all been renamed - use fixconf.sed script
to fix if necessary
- Lots of documentation changes
- Renumber sources
- Don't defer to mod_fastcgi if both are present
- Build SELinux policy module for EL-5; support in EL-5.3 is incomplete and
will be fixed in EL-5.5 (#519369)
- Drop aliases httpd_sys_content_r{a,o,w}_t ->
httpd_fastcgi_content_r{a,o,w}_t from pre-2.5 SElinux policy module as
these types aren't defined there
- Drop gawk buildreq
15 lines
455 B
Plaintext
15 lines
455 B
Plaintext
# This is the Apache server configuration file for providing FastCGI support
|
|
# through mod_fcgid
|
|
#
|
|
# Documentation is available at
|
|
# http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html
|
|
|
|
LoadModule fcgid_module modules/mod_fcgid.so
|
|
|
|
# Use FastCGI to process .fcg .fcgi & .fpl scripts
|
|
AddHandler fcgid-script fcg fcgi fpl
|
|
|
|
# Sane place to put sockets and shared memory file
|
|
FcgidIPCDir /var/run/mod_fcgid
|
|
FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm
|