bank accounts can now have locations.

This commit is contained in:
Bryce Covert
2019-06-04 07:08:10 -07:00
parent cf2319b681
commit 7ac17c9cbc
13 changed files with 90 additions and 18 deletions

View File

@@ -50,3 +50,18 @@ server {
access_log /var/log/nginx/access.log vhost;
return 503;
}
# local.app.integreatconsult.com
upstream local.app.integreatconsult.com {
## Can be connected with "integreat_default" network
# integreat_app_1
server 172.30.0.3:3000;
}
server {
server_name local.app.integreatconsult.com;
listen 80 ;
access_log /var/log/nginx/access.log vhost;
location / {
proxy_pass http://local.app.integreatconsult.com;
include /etc/nginx/vhost.d/default_location;
}
}