From 37db988e1aa49411e6000df64220aeebf8c4a198 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 27 Feb 2023 11:04:35 -0500 Subject: init --- nginx.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nginx.conf (limited to 'nginx.conf') diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..3f682a0 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,15 @@ +upstream itter { + server localhost:7080; +} + +server { + listen 443 ssl; + server_name 54itter.dotemgo.com; + + ssl_certificate /root/dotemgo.com.pem.crt; + ssl_certificate_key /root/dotemgo.com.pem.key; + + location / { + proxy_pass http://itter; + } +} -- cgit v1.2.3