diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/spawn-fcgi/Makefile | 4 | ||||
-rw-r--r-- | www/spawn-fcgi/files/spawn-fcgi.sh.in | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/www/spawn-fcgi/Makefile b/www/spawn-fcgi/Makefile index 747585aba146..4e9e3bdf3010 100644 --- a/www/spawn-fcgi/Makefile +++ b/www/spawn-fcgi/Makefile @@ -7,9 +7,9 @@ PORTNAME= spawn-fcgi PORTVERSION= 1.6.2 +PORTREVISION= 1 CATEGORIES= www -MASTER_SITES= http://www.lighttpd.net/download/ \ - http://mirrors.cat.pdx.edu/lighttpd/ +MASTER_SITES= http://www.lighttpd.net/download/ MAINTAINER= genserg@hotmail.com COMMENT= spawn-fcgi is used to spawn fastcgi applications diff --git a/www/spawn-fcgi/files/spawn-fcgi.sh.in b/www/spawn-fcgi/files/spawn-fcgi.sh.in index e94a31c4fa8b..01554006c3a9 100644 --- a/www/spawn-fcgi/files/spawn-fcgi.sh.in +++ b/www/spawn-fcgi/files/spawn-fcgi.sh.in @@ -35,7 +35,6 @@ _allowed_env="PATH USER PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS FCGI_WEB_SERVER_ _allowed_env="${_allowed_env} ${spawn_fcgi_allowed_env}" start_precmd="${name}_start_precmd" -stop_cmd="${name}_stop_cmd" stop_postcmd="${name}_stop_postcmd" spawn_fcgi_start_precmd() @@ -43,9 +42,9 @@ spawn_fcgi_start_precmd() touch ${pidfile} chown ${spawn_fcgi_user}:${spawn_fcgi_group} ${pidfile} export PATH=${spawn_fcgi_path_env} - export PHP_FCGI_CHILDREN=${spawn_fcgi_children} - export PHP_FCGI_MAX_REQUESTS=${spawn_fastcgi_max_requests} export USER=${spawn_fcgi_user} + export PHP_FCGI_CHILDREN=${spawn_fcgi_children} + export PHP_FCGI_MAX_REQUESTS=${spawn_fcgi_max_requests} export FCGI_WEB_SERVER_ADDRS=${spawn_fcgi_web_server_addrs} E= for i in ${_allowed_env}; do |