diff options
author | dan <[email protected]> | 2023-02-27 11:04:35 -0500 |
---|---|---|
committer | dan <[email protected]> | 2023-02-27 11:04:35 -0500 |
commit | 37db988e1aa49411e6000df64220aeebf8c4a198 (patch) | |
tree | 3b4b3cd836d052c65bca8b1c86938451887d6755 /nginx.conf | |
download | 54-37db988e1aa49411e6000df64220aeebf8c4a198.tar.gz 54-37db988e1aa49411e6000df64220aeebf8c4a198.tar.bz2 54-37db988e1aa49411e6000df64220aeebf8c4a198.zip |
init
Diffstat (limited to 'nginx.conf')
-rw-r--r-- | nginx.conf | 15 |
1 files changed, 15 insertions, 0 deletions
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; + } +} |