From 49f759bac2c3ac0da788888946d31dad3be48df6 Mon Sep 17 00:00:00 2001 From: Giles Bradshaw Date: Sat, 18 Apr 2020 10:05:18 +0100 Subject: [PATCH] . --- letsencrypt-nginx/Dockerfile.home | 5 ++++- letsencrypt-nginx/nginx.conf | 31 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 letsencrypt-nginx/nginx.conf diff --git a/letsencrypt-nginx/Dockerfile.home b/letsencrypt-nginx/Dockerfile.home index 15e966f..ada15ea 100644 --- a/letsencrypt-nginx/Dockerfile.home +++ b/letsencrypt-nginx/Dockerfile.home @@ -1,4 +1,7 @@ ARG image FROM $image COPY ./conf/home.conf /etc/nginx/user.conf.d/server._conf -COPY ./website /www/data \ No newline at end of file +COPY ./nginx.conf /etc/nginx/nginx.conf +COPY ./website /www/data +COPY run.sh / +CMD sh /run.sh \ No newline at end of file diff --git a/letsencrypt-nginx/nginx.conf b/letsencrypt-nginx/nginx.conf new file mode 100644 index 0000000..4e751bf --- /dev/null +++ b/letsencrypt-nginx/nginx.conf @@ -0,0 +1,31 @@ +user nginx; +worker_processes 1; + +error_log /var/log/nginx/error.log warn; +pid /var/run/nginx.pid; + + +events { + worker_connections 1024; +} + + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + #tcp_nopush on; + + keepalive_timeout 65; + + #gzip on; + + include /etc/nginx/user.conf.d/*.conf; +}