From ff9bbad336a3c51fb8cbbceff2afe95c2f7741c5 Mon Sep 17 00:00:00 2001 From: ahasani194 Date: Mon, 11 May 2026 19:24:16 +0330 Subject: [PATCH] fix: update apiBaseUrl to use secure HTTPS for production and TIS environments --- src/environments/environment.prod.ts | 2 +- src/environments/environment.tis.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index ffd8250..f08ed25 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -1,7 +1,7 @@ // Development environment configuration export const environment = { production: false, - apiBaseUrl: 'http://194.59.214.243:5002', + apiBaseUrl: 'https://psp-api.shift-am.ir:5002', // apiBaseUrl: 'http://192.168.128.73:5002', host: 'localhost', port: 5001, diff --git a/src/environments/environment.tis.ts b/src/environments/environment.tis.ts index 005ef5f..3bae07f 100644 --- a/src/environments/environment.tis.ts +++ b/src/environments/environment.tis.ts @@ -1,7 +1,7 @@ // TIS tenant environment configuration export const environment = { production: true, - apiBaseUrl: 'http://194.59.214.243:5002', + apiBaseUrl: 'https://psp-api.shift-am.ir:5002', // apiBaseUrl: 'http://192.168.128.73:5002', host: 'localhost', port: 5000,