feat: implement Docker-based deployment and update environment configuration
Some checks failed
/ build-push (push) Has been cancelled

This commit is contained in:
2026-01-02 20:11:26 -05:00
parent 32c4d643d3
commit f7101a4eee
7 changed files with 69 additions and 38 deletions

14
nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
upstream web_servers {
# Nome da Stack
server angular:80;
}
server {
listen 80;
location / {
proxy_pass http://web_servers;
}
location /api/ {
proxy_pass http://api_servers/;
}
}