freego_api/nginx/nginx.conf
fry 74ee26c8d6 Add nginx so we can make requests to our from the FE without CORS issues (#3)
Co-authored-by: David Frymoyer <david.frymoyer@gmail.com>
Reviewed-on: #3
Co-authored-by: fry <david.frymoyer@gmail.com>
Co-committed-by: fry <david.frymoyer@gmail.com>
2022-03-10 19:26:50 -05:00

17 lines
341 B
Nginx Configuration File

server {
listen 80;
server_name steve;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://ui:3000;
}
location /api/ {
rewrite ^/api(/.*)$ $1 break;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://api:1379;
}
}