diff --git a/SoarCraft.AwaiShop/appsettings.Production.json b/SoarCraft.AwaiShop/appsettings.Production.json index 747c59e6..cfa06d82 100644 --- a/SoarCraft.AwaiShop/appsettings.Production.json +++ b/SoarCraft.AwaiShop/appsettings.Production.json @@ -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" } } } diff --git a/src/ShopNet/Admin/AdminNet.ts b/src/ShopNet/Admin/AdminNet.ts index a04cbe20..6303869c 100644 --- a/src/ShopNet/Admin/AdminNet.ts +++ b/src/ShopNet/Admin/AdminNet.ts @@ -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, diff --git a/src/ShopNet/ShopNet.ts b/src/ShopNet/ShopNet.ts index 4152579d..554dc7c6 100644 --- a/src/ShopNet/ShopNet.ts +++ b/src/ShopNet/ShopNet.ts @@ -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,