Merged in feature/refactor (pull request #1)

update envs

* update envs


Approved-by: Rachit Bhargava
This commit is contained in:
Jay Sharma
2024-06-17 15:58:41 +00:00
committed by Rachit Bhargava
parent 3d93e1b9f1
commit f885e93ca8
24 changed files with 112 additions and 112 deletions

View File

@@ -1,10 +1,10 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: medicalalert-web-default-conf-cm
namespace: medicalalert-web
name: weareconnectamerica-web-default-conf-cm
namespace: weareconnectamerica-web
labels:
app: medicalalert-web
app: weareconnectamerica-web
data:
default.conf: |
@@ -37,9 +37,9 @@ data:
listen 80 default; ## listen for ipv4; this line is default and implied
listen [::]:80 default ipv6only=on; ## listen for ipv6
server_name qa-medicalalert.com "";
server_name qa-weareconnectamerica.com "";
return 301 https://www.qa-medicalalert.com$request_uri;
return 301 https://www.qa-weareconnectamerica.com$request_uri;
root /usr/share/nginx/subdomain/www;
index index.php index.html index.htm;
@@ -57,7 +57,7 @@ data:
listen 80;
listen [::]:80;
server_name ~^(?<subdomain>.+)\.qa-medicalalert\.com$;
server_name ~^(?<subdomain>.+)\.qa-weareconnectamerica\.com$;
if ($http_x_forwarded_proto != 'https') {
return 301 https://$host$request_uri;