Skip to content

Commit

Permalink
test fix https on TEST env
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrispyPeaches committed Mar 21, 2024
1 parent f08f863 commit 55acab4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
depends_on:
- FocusApiDb
environment:
ASPNETCORE_URLS: "http://+:8080"
ASPNETCORE_URLS: "http://+:8080;https://+8081"
ASPNETCORE_ENVIRONMENT: Test
ASPNETCORE_HTTP_PORTS: 8080
ASPNETCORE_HTTPS_PORTS: 8081
Expand Down
2 changes: 1 addition & 1 deletion src/FocusApp.Client/MauiProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private static IServiceCollection RegisterRefitClient(this IServiceCollection se
// This should connect to server hosted api once it is deployed under https
services.AddHttpClient("webapi", client =>
{
client.BaseAddress = new Uri("https://test.zenpxl.com:25565");
client.BaseAddress = new Uri("https://test.zenpxl.com:25566");
});
#endif

Expand Down

0 comments on commit 55acab4

Please sign in to comment.