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; location ^~ /api/wish-server/ { proxy_pass http://127.0.0.1:3001/; } location ^~ / { proxy_pass http://127.0.0.1:3000/; } }