summarylogtreecommitdiffstats
path: root/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf20
1 files changed, 20 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 000000000000..99731557e5d2
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,20 @@
+user http;
+worker_processes 1;
+
+error_log stderr;
+pid /run/nginx.pid;
+
+events {
+ worker_connections 1024;
+}
+
+http {
+ include mime.types;
+ default_type application/octet-stream;
+
+ sendfile on;
+ keepalive_timeout 65;
+ gzip on;
+
+ include /var/lib/aegir/config/nginx.conf;
+}