oragono/templates/nginx.conf.j2
author Luke Hoersten <luke@hoersten.org>
Sun, 05 Jul 2020 10:25:32 -0500
changeset 118 56bffa9ef826
child 124 870c04ac783b
permissions -rw-r--r--
Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
118
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     1
server {
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     2
      listen 6697 ssl;
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     3
      proxy_pass unix:/run/oragono/socket;
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     4
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     5
      ssl_certificate {{nginx_ssl_cert}};
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     6
      ssl_certificate_key {{nginx_ssl_privkey}};
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     7
}