1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-21 20:56:08 +03:00

修正Xray自签证书方案错误

This commit is contained in:
ProxySU 2020-11-27 22:05:27 +08:00
parent 386fc0d484
commit c2d7792f8e
4 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ProxySU"
mc:Ignorable="d"
Title="ProxySU - v2.5.1" Height="675" Width="660">
Title="ProxySU - v2.5.2 Beta1" Height="675" Width="660">
<!--以下样式参考自https://yq.aliyun.com/articles/331878
https://docs.microsoft.co/en-us/dotnet/desktop-wpf/fundamentals/styles-templates-overview-->
<Window.Resources>

View File

@ -2919,13 +2919,13 @@ namespace ProxySU
//currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
//备份原来的文件
//functionResult = FileCheckExists(client, @"/usr/local/etc/xray/config.json");
//if (functionResult == true)
//{
functionResult = FileCheckExists(client, @"/usr/local/etc/xray/config.json");
if (functionResult == true)
{
sshShellCommand = @"mv /usr/local/etc/xray/config.json /usr/local/etc/xray/config.json.1";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
//}
}
//读取配置文件各个模块
string logConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\00_log\00_log.json";
string apiConfigJson = $"{pwdir}" + @"TemplateConfg\xray\server\01_api\01_api.json";
@ -3159,7 +3159,7 @@ namespace ProxySU
|| String.Equals(ReceiveConfigurationParameters[0], "tcpTLSselfSigned") == true
|| String.Equals(ReceiveConfigurationParameters[0], "http2selfSigned") == true)
{
string selfSignedCa = client.RunCommand("/usr/local/bin/v2ctl cert --ca").Result;
string selfSignedCa = client.RunCommand("/usr/local/bin/xray tls cert --ca").Result;
JObject selfSignedCaJObject = JObject.Parse(selfSignedCa);
jObjectJson["inbounds"][0]["streamSettings"]["tlsSettings"]["certificates"][0] = selfSignedCaJObject;
}

View File

@ -51,5 +51,5 @@ using System.Windows;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.5.1.0")]
[assembly: AssemblyFileVersion("2.5.1.0")]
[assembly: AssemblyVersion("2.5.2.0")]
[assembly: AssemblyFileVersion("2.5.2.0")]

Binary file not shown.