summaryrefslogtreecommitdiffstats
path: root/nginx.conf
blob: 8f3379135a3bd7a04f2a40989f52208b3e6d230f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
upstream itter {
        server localhost:7080;
}

server {
        listen 443 ssl;
        server_name 54itter.dotemgo.com;
        client_max_body_size 10m;

        ssl_certificate     /root/dotemgo.com.pem.crt;
        ssl_certificate_key /root/dotemgo.com.pem.key;

        location / {
                proxy_pass http://itter/;
        }
}