23 lines
445 B
Plaintext
23 lines
445 B
Plaintext
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
include /etc/nginx/conf.d/include/ssl-settings;
|
|
include /etc/nginx/conf.d/include/init-optional-variables;
|
|
|
|
location / {
|
|
proxy_pass http://dashboard:3000;
|
|
}
|
|
|
|
location /api/stripe/billing {
|
|
proxy_pass http://dashboard:3000;
|
|
}
|
|
|
|
location /api/stripe/checkout {
|
|
proxy_pass http://dashboard:3000;
|
|
}
|
|
|
|
location /api {
|
|
rewrite /api/(.*) /$1 break;
|
|
proxy_pass http://accounts:3000;
|
|
}
|