Define nginx configuration file #70

Merged
bustikiller merged 1 commits from nginx into main 2024-10-27 17:10:12 +00:00

15
nginx.conf Normal file
View File

@ -0,0 +1,15 @@
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;
}
}