aboutsummaryrefslogtreecommitdiff
path: root/www/fcgiwrap
Commit message (Collapse)AuthorAgeFilesLines
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-5/+5
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* Remove painful examples of foo="", with particular prejudice againstDoug Barton2011-05-151-1/+1
| | | | | | | | | | | | | | | | | | constructions that parse out to [ -z "$foo" ] && foo="" These are bad examples that get copied and pasted into new code, so the hope is that with less bad examples there will be less need for me to bring this up in review. In a few of these files all that were changed were comments so that next time I search for these patterns I won't trip on the file for no reason. In a few places, add $FreeBSD$ No functional changes, so no PORTREVISION bumps Notes: svn path=/head/; revision=274133
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* - s/login/LOGIN/ in rc scriptBaptiste Daroussin2010-12-011-7/+4
| | | | | | | | | | - cleaner way to handle pre_cmd - cleanup pid file left behind Reported by: dougb Notes: svn path=/head/; revision=265499
* Fix rc script when fcgiwrap_user is not setBaptiste Daroussin2010-11-292-2/+2
| | | | | | | bump portrevision Notes: svn path=/head/; revision=265371
* Fix typo in rc scriptBaptiste Daroussin2010-11-221-1/+1
| | | | Notes: svn path=/head/; revision=264919
* Punt autoconf267->autoconf268Ade Lovett2010-10-161-1/+1
| | | | Notes: svn path=/head/; revision=263089
* Autotools update. Read ports/UPDATING 20100915 for details.Ade Lovett2010-09-151-2/+2
| | | | | | | | Approved by: portmgr (for Mk/bsd.port.mk part) Tested by: Multiple -exp runs Notes: svn path=/head/; revision=261230
* - remove useless addition of ${fcgiwrap_flags} to command_argsBaptiste Daroussin2010-08-231-1/+1
| | | | | | | | Reported by: dougb Approved by: jadawin (co-mentor) Notes: svn path=/head/; revision=259838
* - Add rc scriptBaptiste Daroussin2010-08-172-0/+78
| | | | | | | Approved by: tabthorpe (mentor) Notes: svn path=/head/; revision=259443
* Change maintainer address to my new @FreeBSD.orgBaptiste Daroussin2010-07-281-1/+1
| | | | | | | Approved by: jadawin@ (co-mentor) Notes: svn path=/head/; revision=258396
* fcgiwrap is a simple server for running CGI applications over FastCGI. It hopesPhilippe Audeoud2010-07-204-0/+59
to provide clean CGI support to Nginx (and other web servers that may need it). Features: * very lightweight (84KB of private memory per instance) * fixes broken CR/LF in headers * handles environment in a sane way (CGI scripts get HTTP-related env. vars * from FastCGI parameters and inherit all the others from fcgiwrap's * environment) * no configuration, so you can run several sites off the same fcgiwrap pool * passes CGI stderr output to fcgiwrap's stderr (this is by design but * stderr could be also passed to FastCGI stderr stream) WWW: http://nginx.localdomain.pl/wiki/FcgiWrap PR: ports/148649 Submitted by: Bapt <baptiste.daroussin at gmail.com> Notes: svn path=/head/; revision=257991