forked from deso-protocol/run
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx.dev
More file actions
33 lines (27 loc) · 772 Bytes
/
nginx.dev
File metadata and controls
33 lines (27 loc) · 772 Bytes
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
events {
}
http {
client_max_body_size 20m;
server {
server_name bitclout.me;
location / {
proxy_pass http://frontend:8080;
}
listen 80;
# listen 443 ssl;
# ssl_certificate /etc/letsencrypt/live/server2.your.domain/fullchain.pem;
# ssl_certificate_key /etc/letsencrypt/live/server2.your.domain/privkey.pem;
# include /etc/letsencrypt/options-ssl-nginx.conf;
}
server {
server_name api.bitclout.me;
location / {
proxy_pass http://core:17001;
}
listen 80;
# listen 443 ssl;
# ssl_certificate /etc/letsencrypt/live/server2.your.domain/fullchain.pem;
# ssl_certificate_key /etc/letsencrypt/live/server2.your.domain/privkey.pem;
# include /etc/letsencrypt/options-ssl-nginx.conf;
}
}