feat: implement Docker-based deployment and update environment configuration
Some checks failed
/ build-push (push) Has been cancelled
Some checks failed
/ build-push (push) Has been cancelled
This commit is contained in:
14
nginx.conf
Normal file
14
nginx.conf
Normal 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/;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user