mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-10 23:11:17 +02:00
Added support for dynamic modules /usr/lib/nginx/modules: 3RD PARTY ================================ ngx_http_naxsi_module.so ngx_http_cache_purge_module.so ngx_http_upstream_fair_module.so ngx_http_sysguard_module.so * http-sysguard backported from tengine: http://tengine.taobao.org/document/http_sysguard.html CORE ================================ ngx_http_geoip_module.so ngx_http_image_filter_module.so ngx_http_perl_module.so ngx_http_xslt_filter_module.so ngx_mail_module.so ngx_stream_module.so ---------------------------------------------------- To load dynamic modules add to /etc/nginx/nginx.conf load_module "modules/ngx_module_name_above.so"; ----------------------------------------------------
68 lines
1.3 KiB
Plaintext
68 lines
1.3 KiB
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="Nginx http and reverse proxy server"
|
|
extra_started_commands="reload reopen upgrade"
|
|
|
|
cfgfile=${cfgfile:-/etc/nginx/nginx.conf}
|
|
pidfile=/run/nginx/nginx.pid
|
|
command=/usr/sbin/nginx
|
|
command_args="-c $cfgfile"
|
|
required_files="$cfgfile"
|
|
|
|
depend() {
|
|
need net
|
|
use dns logger netmount
|
|
}
|
|
|
|
start_pre() {
|
|
ebegin
|
|
checkpath --directory --owner nginx:nginx ${pidfile%/*}
|
|
$command $command_args -t -q
|
|
eend $?
|
|
}
|
|
|
|
reload() {
|
|
ebegin "Reloading ${SVCNAME} configuration"
|
|
start_pre && start-stop-daemon --signal HUP --pidfile $pidfile
|
|
eend $?
|
|
}
|
|
|
|
reopen() {
|
|
ebegin "Reopening ${SVCNAME} log files"
|
|
start-stop-daemon --signal USR1 --pidfile $pidfile
|
|
eend $?
|
|
}
|
|
|
|
upgrade() {
|
|
start_pre || return 1
|
|
|
|
ebegin "Upgrading ${SVCNAME} binary"
|
|
|
|
einfo "Sending USR2 to old binary"
|
|
start-stop-daemon --signal USR2 --pidfile $pidfile
|
|
|
|
einfo "Sleeping 3 seconds before pid-files checking"
|
|
sleep 3
|
|
|
|
if [ ! -f $pidfile.oldbin ]; then
|
|
eerror "File with old pid ($pidfile.oldbin) not found"
|
|
return 1
|
|
fi
|
|
|
|
if [ ! -f $pidfile ]; then
|
|
eerror "New binary failed to start"
|
|
return 1
|
|
fi
|
|
|
|
einfo "Sleeping 3 seconds before WINCH"
|
|
sleep 3 ; start-stop-daemon --signal 28 --pidfile $pidfile.oldbin
|
|
|
|
einfo "Sending QUIT to old binary"
|
|
start-stop-daemon --signal QUIT --pidfile $pidfile.oldbin
|
|
|
|
einfo "Upgrade completed"
|
|
|
|
eend $? "Upgrade failed"
|
|
}
|
|
|