aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nginx-naxsi/nginx-naxsi.pre-install
diff options
context:
space:
mode:
authorStuart Cardall <developer@it-offshore.co.uk>2014-09-18 03:20:50 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2014-09-18 09:47:11 +0000
commit7596de12a5a72588a318d4768303b18635ab44b7 (patch)
treefad92b3d4e2aab3b3001b611398253dfd020ed37 /testing/nginx-naxsi/nginx-naxsi.pre-install
parent080e012e1cc56363171c2544a7591918c7be26ad (diff)
downloadaports-7596de12a5a72588a318d4768303b18635ab44b7.tar.bz2
aports-7596de12a5a72588a318d4768303b18635ab44b7.tar.xz
testing/nginx-naxsi: new aport
NGINX with naxsi WAF support https://github.com/nbs-system/naxsi Built with the same modules as Debian + SysGuard from Tengine. Nginx patched to anonymise server strings. With the WAF & SysGuard enabled nginx-naxsi benchmarked @ approx 600 connections / second (the same as the standard Alpine nginx pkg). With the WAF disabled 640 connections / second (as the mail modules are removed as per the naxsi author's recommendation).
Diffstat (limited to 'testing/nginx-naxsi/nginx-naxsi.pre-install')
-rw-r--r--testing/nginx-naxsi/nginx-naxsi.pre-install9
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/nginx-naxsi/nginx-naxsi.pre-install b/testing/nginx-naxsi/nginx-naxsi.pre-install
new file mode 100644
index 0000000000..55b5bfcda5
--- /dev/null
+++ b/testing/nginx-naxsi/nginx-naxsi.pre-install
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+addgroup -g 82 -S www-data 2>/dev/null
+addgroup -S nginx 2>/dev/null
+adduser -S -G nginx -H -h /var/www/localhost/htdocs -s /sbin/nologin \
+ -D nginx 2>/dev/null
+addgroup nginx www-data 2>/dev/null
+
+exit 0