wedding-planner/nginx.conf

21 lines
433 B
Nginx Configuration File
Raw Normal View History

server {
listen 80;
server_name libre-wedding-planner.app.localhost;
location /api/ {
2024-11-03 13:53:36 +01:00
proxy_pass http://backend:3000/;
proxy_set_header Host $http_host;
}
location /letter_opener/ {
proxy_pass http://backend:3000/letter_opener/;
proxy_set_header Host $http_host;
}
location / {
2024-11-03 13:40:50 +01:00
proxy_pass http://frontend:3000;
proxy_set_header Host $http_host;
}
}