mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update: fix
This commit is contained in:
parent
30b3587771
commit
43f4ecce93
@ -156,7 +156,7 @@ class ServerService
|
|||||||
return $json;
|
return $json;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function setDns(Server $server, object $json)
|
private function setDns(ServerV2ray $server, object $json)
|
||||||
{
|
{
|
||||||
if ($server->dnsSettings) {
|
if ($server->dnsSettings) {
|
||||||
$dns = $server->dnsSettings;
|
$dns = $server->dnsSettings;
|
||||||
@ -169,7 +169,7 @@ class ServerService
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function setNetwork(Server $server, object $json)
|
private function setNetwork(ServerV2ray $server, object $json)
|
||||||
{
|
{
|
||||||
if ($server->networkSettings) {
|
if ($server->networkSettings) {
|
||||||
switch ($server->network) {
|
switch ($server->network) {
|
||||||
@ -198,7 +198,7 @@ class ServerService
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function setRule(Server $server, object $json)
|
private function setRule(ServerV2ray $server, object $json)
|
||||||
{
|
{
|
||||||
$domainRules = array_filter(explode(PHP_EOL, config('v2board.server_v2ray_domain')));
|
$domainRules = array_filter(explode(PHP_EOL, config('v2board.server_v2ray_domain')));
|
||||||
$protocolRules = array_filter(explode(PHP_EOL, config('v2board.server_v2ray_protocol')));
|
$protocolRules = array_filter(explode(PHP_EOL, config('v2board.server_v2ray_protocol')));
|
||||||
@ -238,7 +238,7 @@ class ServerService
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function setTls(Server $server, object $json)
|
private function setTls(ServerV2ray $server, object $json)
|
||||||
{
|
{
|
||||||
if ((int)$server->tls) {
|
if ((int)$server->tls) {
|
||||||
$tlsSettings = $server->tlsSettings;
|
$tlsSettings = $server->tlsSettings;
|
||||||
|
Loading…
Reference in New Issue
Block a user