From 454932268aa6e300466eb698a43fa1810253bad2 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Fri, 22 May 2020 14:57:46 +0530 Subject: [PATCH] Changing the backend API endpoint on this branch because this is endpoint is what local builds & test cases hit --- app/client/docker/nginx-linux.conf | 13 +++++++------ app/client/docker/nginx-mac.conf | 13 +++++++------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/app/client/docker/nginx-linux.conf b/app/client/docker/nginx-linux.conf index ca465a819c..fb3273c72b 100644 --- a/app/client/docker/nginx-linux.conf +++ b/app/client/docker/nginx-linux.conf @@ -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; } } diff --git a/app/client/docker/nginx-mac.conf b/app/client/docker/nginx-mac.conf index 7ddbe37121..0491d2594b 100644 --- a/app/client/docker/nginx-mac.conf +++ b/app/client/docker/nginx-mac.conf @@ -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; } }