Skip to content

Commit

Permalink
Merge pull request #72 from ConchbrainClub/main
Browse files Browse the repository at this point in the history
update prod site proxy server
  • Loading branch information
lixinyang123 authored Nov 5, 2023
2 parents 725dbcb + 15d45ab commit ce731bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion MixApp.Shared/Pages/Setting.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@inherits MixApp.Shared.Pages.SettingBase

@inject LocaleManager LM
@inject IConfiguration Configuration

<PageTitle>@LM.Scripts["p.setting.setting"]</PageTitle>

Expand Down Expand Up @@ -66,7 +67,7 @@

<FluentTextField
style="width: 250px;"
Placeholder="https://cors.conchbrain.club?"
Placeholder="@(Configuration.GetValue<string>("DownloadProxy") ?? string.Empty)"
@bind-Value="DownloadProxy" >
</FluentTextField>
</FluentStack>
Expand Down
2 changes: 1 addition & 1 deletion MixApp.Shared/wwwroot/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"BaseAddress": "https://mixapi-staging.conchbrain.club",
"AssetsAddress": "https://mixassets.conchbrain.club/",
"DownloadProxy": "https://cors.conchbrain.club?"
"DownloadProxy": "https://cors.conchbrain.club/?"
}
2 changes: 1 addition & 1 deletion MixApp.Shared/wwwroot/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"BaseAddress": "https://mixapi.conchbrain.club",
"AssetsAddress": "https://mixassets.conchbrain.club/",
"DownloadProxy": "https://cors.conchbrain.club?"
"DownloadProxy": "https://proxy2.conchbrain.club/?"
}

0 comments on commit ce731bc

Please sign in to comment.