wedding-planner/nginx.conf
Manuel Bustillo b40ef06649
All checks were successful
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 29m45s
Run unit tests / unit_tests (pull_request) Successful in 2m14s
Define nginx configuration file
2024-10-27 14:04:02 +01:00

16 lines
301 B
Nginx Configuration File

server {
listen 80;
server_name libre-wedding-planner.app.localhost;
location /api/ {
proxy_pass http://localhost:3001/;
proxy_set_header Host $http_host;
}
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $http_host;
}
}