dev: add auth route in nginx

This commit is contained in:
pablohashescobar 2024-05-08 20:53:46 +05:30
parent cf17761c5c
commit cbdd2ba462

View File

@ -32,6 +32,10 @@ http {
proxy_pass http://admin:3000/god-mode/;
}
location /auth/ {
proxy_pass http://api:8000/auth/;
}
location /${BUCKET_NAME}/ {
proxy_pass http://plane-minio:9000/${BUCKET_NAME}/;
}