Manuel Bustillo
a0de5eb663
Reviewed-on: #70 Co-authored-by: Manuel Bustillo <bustikiller@bustikiller.com> Co-committed-by: Manuel Bustillo <bustikiller@bustikiller.com>
16 lines
301 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
|