diff options
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; + } +} |