-
Notifications
You must be signed in to change notification settings - Fork 0
/
esms-dev.conf
36 lines (30 loc) · 1.19 KB
/
esms-dev.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
server {
server_name esms.gitcoin.co;
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/esms.gitcoin.co/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/esms.gitcoin.co/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
# dev instance @ esms.gitcoin.co/v1/dev_sign_claim
location ~ ^/(v1/dev_sign_claim) {
proxy_pass http://localhost:9000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
# staging instance @ esms.gitcoin.co/v1/sign_claim
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
server {
if ($host = esms.gitcoin.co) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name esms.gitcoin.co;
listen 80;
return 404; # managed by Certbot
}