Changing the backend API endpoint on this branch because this is endpoint is what local builds & test cases hit

This commit is contained in:
Arpit Mohan 2020-05-22 14:57:46 +05:30
parent c32ae80f3e
commit 454932268a
2 changed files with 14 additions and 12 deletions

View File

@ -1,3 +1,4 @@
#### TODO: Please change the backend endpoint from acl.appsmith.com --> https://release-api.appsmith.com when merged into release
server {
listen 80;
server_name dev.appsmith.com;
@ -20,19 +21,19 @@ server {
location /api {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /oauth2 {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /login {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
}
@ -61,19 +62,19 @@ server {
location /api {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /oauth2 {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /login {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
}

View File

@ -1,3 +1,4 @@
#### TODO: Please change the backend endpoint from acl.appsmith.com --> https://release-api.appsmith.com when merged into release
server {
listen 80;
server_name dev.appsmith.com;
@ -19,21 +20,21 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /oauth2 {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /login {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
}
@ -59,20 +60,20 @@ server {
location /api {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /oauth2 {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
location /login {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass https://release-api.appsmith.com;
proxy_pass https://acl.appsmith.com;
}
}