This adds the nginx package from the old svn package fee. I adopt the licensing information and will maintain the package in the future. This request also updates nginx to the last stable version 1.4.7. It further adds support for - naxsi (the ngix web application firewall) - syslog module - http upstream check module - support for the haproxy Proxy Protocol (this way nginx can see the real ip address behind haproxy) Building was tested with target x86_64, ar71xx and avr32. Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
24 lines
279 B
Bash
24 lines
279 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009-2012 OpenWrt.org
|
|
|
|
START=50
|
|
NGINX_BIN=/usr/sbin/nginx
|
|
|
|
start() {
|
|
mkdir -p /var/log/nginx
|
|
mkdir -p /var/lib/nginx
|
|
$NGINX_BIN
|
|
}
|
|
|
|
stop() {
|
|
$NGINX_BIN -s stop
|
|
}
|
|
|
|
reload() {
|
|
$NGINX_BIN -s reload
|
|
}
|
|
|
|
shutdown() {
|
|
$NGINX_BIN -s quit
|
|
}
|
|
|