ergo/templates/nginx.conf.j2
author Luke Hoersten <luke@hoersten.org>
Mon, 05 Sep 2022 16:02:56 -0500
changeset 187 0f3a64c60ec5
parent 170 a20a6d03747f
child 200 10051617d075
permissions -rw-r--r--
Added lnd REST api to nginx. Moved prometheus and apt-cacher data to external hdd.
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;
170
a20a6d03747f Updated versions: minecraft, miniflux, pleroma, writefreely, ergo-oragono.
Luke Hoersten <luke@hoersten.org>
parents: 137
diff changeset
     3
      proxy_pass unix:/var/ergo/socket;
124
870c04ac783b Fixed proxy pass for stream.
Luke Hoersten <luke@hoersten.org>
parents: 118
diff changeset
     4
      proxy_protocol on;
118
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     5
56bffa9ef826 Added nginx and oragono HUP reloading to systemd handlers. Added nginx config.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     6
      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
     7
      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
     8
}