summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Makefile.in: define dummy datarootdir variableDave Reisner2012-09-081-0/+1
| | | | | | | | This suppresses a warning on ./configure for a directory which fcgiwrap does not use: config.status: WARNING: 'Makefile.in' seems to ignore the --datarootdir setting
* simplify build rule for fcgiwrapDave Reisner2012-08-231-1/+3
| | | | | | | Add flags and libraries to the respective environment vars and let make figure out the order on its own. This provides support for unmentioned vars such as LDFLAGS implicitly, as the compilation rule isn't explicitly defined.
* Merge pull request #7 from falconindy/systemdGrzegorz Nosek2012-08-214-0/+32
|\ | | | | add systemd unit files for installation
| * add systemd unit files for installationDave Reisner2012-08-214-0/+32
|/ | | | | These are automatically installed iff systemd support is compiled into fcgiwrap.
* Merge pull request #6 from falconindy/systemdGrzegorz Nosek2012-08-213-24/+59
|\ | | | | systemd socket activation support
| * Cleanup -Wmissing-prototypes compiler warningsDave Reisner2012-08-191-5/+5
| |
| * Add support for socket activation via systemdDave Reisner2012-08-193-1/+30
| | | | | | | | | | | | This prevents the need for starting fcgiwrap explicitly, or using a tool such as spawn-fcgi. The type of socket does not matter, we merely accept a single FD passed from pid 1 and listen on it.
| * split listen() logic into separate functionDave Reisner2012-08-191-18/+24
|/
* Merge pull request #5 from goochjj/masterGrzegorz Nosek2011-12-082-2/+16
|\ | | | | STDERR redirection back through the FCGI socket
| * fix manpage - add -f optionJoe Gooch2011-12-081-0/+6
| |
| * Create -f option to allow sending stderr to fcgi logsJoseph Gooch2011-12-081-2/+10
|/
* support LDFLAGSNikoli2010-09-151-1/+1
|
* Add missing escaping to minus signs.Jordi Mallach2010-09-081-2/+2
| | | | | | "-" must be escaped ("\-") to be interpreted as minus. Signed-off-by: Jordi Mallach <jordi@debian.org>
* [GH-2] Advance configure.ac version to 1.0.3Grzegorz Nosek2010-08-231-1/+1
|
* fixing compilation under FreeBSDQuentin Stievenart2010-08-161-0/+1
|
* Create folder for man prior to the installation.Ron Huang2010-06-111-0/+2
|
* Add `-s' option to enable binding by fcgiwrap itselfGrzegorz Nosek2010-06-032-4/+144
| | | | This should ease testing and deployment in simpler cases
* Use SCRIPT_FILENAME environment variable when availableGrzegorz Nosek2010-06-032-4/+16
| | | | | | If present, it overrides DOCUMENT_ROOT and SCRIPT_NAME and prevents mangling of PATH_INFO. Should allow cleaner configs when script names don't come from request URIs directly.
* Jordi Mallach's email has been corrected as requested by him.W-Mark Kubacki2010-06-022-1/+2
| | | | He's been added to the contributors in README.rst.
* added handling of manpages to makefileW-Mark Kubacki2010-05-251-1/+2
|
* adjusted option _-c_ help textW-Mark Kubacki2010-05-251-1/+1
|
* fcgiwrap to rely on definitions provided by autoconf/autoreconfW-Mark Kubacki2010-05-255-7/+12
|
* nitpicks as described in today's email to MarkJordi Mallach2010-05-251-4/+4
| | | | Signed-off-by: W-Mark Kubacki <wmark@hurrikane.de>
* renamed: gnosek-fcgiwrap.8 -> fcgiwrap.8W-Mark Kubacki2010-05-251-0/+0
|
* added configuration examples to manpageW-Mark Kubacki2010-05-251-1/+45
|
* replaced occurences of 'gnosek-fcgiwrap' by 'fcgiwrap'W-Mark Kubacki2010-05-251-4/+4
|
* manpage as contributed by Jordi MallachJordi Mallach2010-05-251-0/+38
| | | | Signed-off-by: W-Mark Kubacki <wmark@hurrikane.de>
* help screen, along with version set to 1.0W-Mark Kubacki2010-03-221-1/+13
|
* Makefile: DESTDIR and --prefix supportW-Mark Kubacki2010-03-222-5/+10
|
* grammarW-Mark Kubacki2010-03-222-2/+2
|
* oldest possible autoconf is 2.61, with separation of troublesome functionsW-Mark Kubacki2010-03-221-2/+3
|
* abort configuration if something is missingW-Mark Kubacki2010-03-221-3/+4
|
* Makefile: proper clean and distclean targetsW-Mark Kubacki2010-03-221-1/+8
|
* typoW-Mark Kubacki2010-03-181-1/+1
|
* README: contributorsW-Mark Kubacki2010-03-181-0/+1
|
* READMEW-Mark Kubacki2010-03-181-0/+41
|
* git to ignore auto-generated filesW-Mark Kubacki2010-03-181-0/+5
|
* input files and substitution variables for autoconfW-Mark Kubacki2010-03-182-1/+38
|
* Makefile renamed to be modified to be input for autoconfW-Mark Kubacki2010-03-181-0/+0
|
* Compile fixes for OpenBSDGrzegorz Nosek2009-07-171-2/+3
| | | | Thanks to Toni Mueller, original author of the patch
* Officially release fcgiwrap under the MIT licenceGrzegorz Nosek2009-03-171-0/+25
|
* Close child's pipe ends after dup2()ing them to the right placesGrzegorz Nosek2009-03-171-0/+4
| | | | Thanks to Fenixk19 for the report and patch.
* Better diagnostics for 403 errorsGrzegorz Nosek2009-02-281-12/+19
| | | | Passed via FastCGI stderr, so should end up in webserver's error log
* Simple prefork supportGrzegorz Nosek2009-02-281-2/+81
| | | | (start as fcgiwrap -c <num-children>, with a suitable socket on FD 0)
* Don't eat characters after final CR/LFGrzegorz Nosek2008-12-031-2/+2
|
* Restore default SIGCHLD handler (also SIGPIPE for completeness)Grzegorz Nosek2008-06-101-0/+2
|
* Keep passing data from CGI to FastCGI even after a descriptor closes earlyGrzegorz Nosek2008-06-101-1/+1
|
* Fix CR/LF mangling to skip response bodyGrzegorz Nosek2008-05-051-0/+5
|
* Split out passing the request to a separate functionGrzegorz Nosek2008-05-051-6/+17
|
* Fix off-by-one while walking the bufferGrzegorz Nosek2008-03-221-1/+1
|