bank accounts can now have locations.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user