live.umm.gay/nginx/live-umm-gay.conf

18 lines
378 B
Plaintext
Raw Permalink Normal View History

2023-02-23 11:19:57 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name live.umm.gay;
ssl_certificate /etc/letsencrypt/live/live.umm.gay/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/live.umm.gay/privkey.pem;
2023-02-23 11:44:52 +00:00
location ^~ /api/wish-server/ {
2023-02-23 11:19:57 +00:00
proxy_pass http://127.0.0.1:3001/;
2023-02-23 21:48:37 +00:00
}
location ^~ / {
proxy_pass http://127.0.0.1:3000/;
2023-02-23 11:19:57 +00:00
}
}