Skip to content

Commit

Permalink
update host domain
Browse files Browse the repository at this point in the history
  • Loading branch information
meofiscoding committed Nov 27, 2023
1 parent f3fea28 commit 1c00073
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public async Task<string> CheckOut(Subcription product, string userEmail)
// Get the base URL for the subscription
// var request = _httpContextAccessor.HttpContext?.Request ?? throw new Exception("Could not get request to checkout");
// var baseUrl = $"{request.Scheme}://{request.Host}";
var baseUrl = "https://aks.20.44.235.37.nip.io";
var baseUrl = "https://aks.technology";
var options = new SessionCreateOptions
{
// Stripe calls these user defined endpoints
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ConnectionStrings": {
"PaymentDB": "User ID=meofadmin;Password=123456;Server=localhost;Port=5432;Database=PaymentDB"
},
"GrpcUrl": "https://aks.20.44.235.37.nip.io/",
"GrpcUrl": "https://aks.technology",
"IdentityUrl": "https://localhost:7096",
"ClientUrl": "https://simplenetflix.vercel.app"
}
4 changes: 2 additions & 2 deletions deploy/k8s/apigw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ metadata:
spec:
tls:
- hosts:
- aks.20.44.235.37.nip.io # update IP address here
- aks.technology # update IP address here
secretName: app-web-cert
rules:
- host: aks.20.44.235.37.nip.io
- host: aks.technology
http:
paths:
- path: /(.*)
Expand Down

0 comments on commit 1c00073

Please sign in to comment.