diff --git a/RBLNews.Shared/Services/FeedDataService.cs b/RBLNews.Shared/Services/FeedDataService.cs index e38cdf8..a7746e4 100644 --- a/RBLNews.Shared/Services/FeedDataService.cs +++ b/RBLNews.Shared/Services/FeedDataService.cs @@ -32,7 +32,7 @@ namespace RBLNews.Shared.Services public async Task LoadFeeds() { - Feeds = await httpClient.GetFromJsonAsync($"{this._configService.AppSettings.BackendApiUrl}/api/feeds") ?? new RssVM(); + Feeds = await httpClient.GetFromJsonAsync($"{this._configService.AppSettings.BackendApiUrl}/feeds") ?? new RssVM(); DataChanged.Invoke(); } } diff --git a/RBLNews.Web/appsettings.Development.json b/RBLNews.Web/appsettings.Development.json index 7a608cd..54323f7 100644 --- a/RBLNews.Web/appsettings.Development.json +++ b/RBLNews.Web/appsettings.Development.json @@ -6,6 +6,6 @@ } }, "App": { - "BackendApiUrl": "https://localhost:5147" + "BackendApiUrl": "https://localhost:7127" } } diff --git a/RBLNews.Web/appsettings.Production.json b/RBLNews.Web/appsettings.Production.json index 0c2c7dc..484d0cf 100644 --- a/RBLNews.Web/appsettings.Production.json +++ b/RBLNews.Web/appsettings.Production.json @@ -5,8 +5,8 @@ "Microsoft.AspNetCore": "Warning" } }, - "AllowedHosts": "*", + "AllowedHosts": "*", "App": { - "BackendApiUrl": "https://rblnews.de" + "BackendApiUrl": "https://rblnews.de/api" } } diff --git a/RBLNews.Web/appsettings.Test.json b/RBLNews.Web/appsettings.Test.json index 8ceaf0e..9d1adf2 100644 --- a/RBLNews.Web/appsettings.Test.json +++ b/RBLNews.Web/appsettings.Test.json @@ -5,8 +5,8 @@ "Microsoft.AspNetCore": "Warning" } }, - "AllowedHosts": "*", + "AllowedHosts": "*", "App": { - "BackendApiUrl": "https://rbl.wohlleben.dev" + "BackendApiUrl": "https://rbl.wohlleben.dev/api" } }