From d67fdf8ed71f6927a00cf6bc812777091e5a026d Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Sun, 5 Jul 2020 10:25:32 -0500 Subject: Added nginx and oragono HUP reloading to systemd handlers. Added nginx config. --- oragono/templates/nginx.conf.j2 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 oragono/templates/nginx.conf.j2 (limited to 'oragono/templates/nginx.conf.j2') diff --git a/oragono/templates/nginx.conf.j2 b/oragono/templates/nginx.conf.j2 new file mode 100644 index 0000000..38719ec --- /dev/null +++ b/oragono/templates/nginx.conf.j2 @@ -0,0 +1,7 @@ +server { + listen 6697 ssl; + proxy_pass unix:/run/oragono/socket; + + ssl_certificate {{nginx_ssl_cert}}; + ssl_certificate_key {{nginx_ssl_privkey}}; +} -- cgit v1.2.3