fix: 修复https调用http问题

This commit is contained in:
橙子
2024-06-09 01:10:33 +08:00
parent 0789ebf9a9
commit a903b5e36c
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Authors>橙子老哥</Authors>
<Description>yi-framework框架配套工具</Description>
<PackageProjectUrl>https://ccnetcore.com</PackageProjectUrl>

View File

@@ -15,7 +15,7 @@ namespace Yi.Abp.Tool
Configure<AbpRemoteServiceOptions>(options =>
{
options.RemoteServices.Default =
new RemoteServiceConfiguration("http://ccnetcore.com:19002");
new RemoteServiceConfiguration("https://ccnetcore.com:19009");
});
}
}