Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
Update appsettings.Production.json and network URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloento committed Jan 3, 2024
1 parent 37aa4ca commit 845fb82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SoarCraft.AwaiShop/appsettings.Production.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"AllowedHosts": "awai.aloen.to",
"AllowedHosts": "awai.aloen.to;awaishop.aloen.to",
"Kestrel": {
"Endpoints": {
"Shop": {
"Url": "http://awaishop.aloen.to:8080"
"Url": "http://awaishop.aloen.to:3389"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ShopNet/Admin/AdminNet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export abstract class AdminNet extends SignalR {
* @version 0.1.2
*/
public static readonly Hub = new HubConnectionBuilder()
.withUrl(import.meta.env.DEV ? "https://localhost/AdminHub" : "http://awaishop.aloen.to:8080/AdminHub",
.withUrl(import.meta.env.DEV ? "https://localhost/AdminHub" : "http://awaishop.aloen.to:3389/AdminHub",
{
...import.meta.env.DEV ? {
skipNegotiation: true,
Expand Down
2 changes: 1 addition & 1 deletion src/ShopNet/ShopNet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export abstract class ShopNet extends SignalR {
* @version 0.1.2
*/
public static readonly Hub = new HubConnectionBuilder()
.withUrl(import.meta.env.DEV ? "https://localhost/Hub" : "http://awaishop.aloen.to:8080/Hub",
.withUrl(import.meta.env.DEV ? "https://localhost/Hub" : "http://awaishop.aloen.to:3389/Hub",
{
...import.meta.env.DEV ? {
skipNegotiation: true,
Expand Down

0 comments on commit 845fb82

Please sign in to comment.