- Added `make fnginx` to have better dev experience - Added app.conf to nginx configuration to handle frontend
4 lines
95 B
Text
4 lines
95 B
Text
#forward the post request to the microservice
|
|
location /api/auth/ {
|
|
proxy_pass http://auth;
|
|
}
|