26 lines
572 B
Nginx Configuration File
26 lines
572 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name libre-wedding-planner.app.localhost;
|
|
|
|
location /api/ {
|
|
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 /captcha/v2/media/ {
|
|
proxy_pass http://libre-captcha:8888/v2/media/;
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://frontend:3000;
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
}
|
|
|