src.nth.io/

summaryrefslogtreecommitdiff
path: root/oragono/templates/nginx.conf.j2
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-07-05 10:25:32 -0500
committerLuke Hoersten <[email protected]>2020-07-05 10:25:32 -0500
commitd67fdf8ed71f6927a00cf6bc812777091e5a026d (patch)
tree65c745a68f570fa1f312123187f57cdb64c42bdf /oragono/templates/nginx.conf.j2
parent79880c1df8fd49110486051df059f259a1a7d08f (diff)
Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Diffstat (limited to 'oragono/templates/nginx.conf.j2')
-rw-r--r--oragono/templates/nginx.conf.j27
1 files changed, 7 insertions, 0 deletions
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}};
+}