🐛 fix(node): Reality config
This commit is contained in:
parent
2bcb92546c
commit
fadd17f4d1
@ -12,6 +12,8 @@ const securityConfigSchema = z
|
|||||||
reality_private_key: nullableString,
|
reality_private_key: nullableString,
|
||||||
reality_public_key: nullableString,
|
reality_public_key: nullableString,
|
||||||
reality_short_id: nullableString,
|
reality_short_id: nullableString,
|
||||||
|
reality_server_addr: nullableString,
|
||||||
|
reality_server_port: portSchema,
|
||||||
})
|
})
|
||||||
.nullish();
|
.nullish();
|
||||||
|
|
||||||
|
|||||||
@ -637,7 +637,7 @@ export default function NodeForm<T extends { [x: string]: any }>({
|
|||||||
<>
|
<>
|
||||||
<FormField
|
<FormField
|
||||||
control={form.control}
|
control={form.control}
|
||||||
name='config.security_config.server_address'
|
name='config.security_config.reality_server_addr'
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t('form.security_config.serverAddress')}</FormLabel>
|
<FormLabel>{t('form.security_config.serverAddress')}</FormLabel>
|
||||||
@ -658,7 +658,7 @@ export default function NodeForm<T extends { [x: string]: any }>({
|
|||||||
/>
|
/>
|
||||||
<FormField
|
<FormField
|
||||||
control={form.control}
|
control={form.control}
|
||||||
name='config.security_config.server_port'
|
name='config.security_config.reality_server_port'
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t('form.security_config.serverPort')}</FormLabel>
|
<FormLabel>{t('form.security_config.serverPort')}</FormLabel>
|
||||||
@ -678,34 +678,7 @@ export default function NodeForm<T extends { [x: string]: any }>({
|
|||||||
/>
|
/>
|
||||||
<FormField
|
<FormField
|
||||||
control={form.control}
|
control={form.control}
|
||||||
name='config.security_config.proxy_protocol'
|
name='config.security_config.reality_private_key'
|
||||||
render={({ field }) => (
|
|
||||||
<FormItem>
|
|
||||||
<FormLabel>{t('form.security_config.proxyProtocol')}</FormLabel>
|
|
||||||
<Select
|
|
||||||
value={field.value}
|
|
||||||
onValueChange={(value) => {
|
|
||||||
form.setValue(field.name, value);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<FormControl>
|
|
||||||
<SelectTrigger>
|
|
||||||
<SelectValue placeholder={t('form.security')} />
|
|
||||||
</SelectTrigger>
|
|
||||||
</FormControl>
|
|
||||||
<SelectContent>
|
|
||||||
<SelectItem value='0'>0</SelectItem>
|
|
||||||
<SelectItem value='1'>1</SelectItem>
|
|
||||||
<SelectItem value='2'>2</SelectItem>
|
|
||||||
</SelectContent>
|
|
||||||
</Select>
|
|
||||||
<FormMessage />
|
|
||||||
</FormItem>
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
<FormField
|
|
||||||
control={form.control}
|
|
||||||
name='config.security_config.private_key'
|
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t('form.security_config.privateKey')}</FormLabel>
|
<FormLabel>{t('form.security_config.privateKey')}</FormLabel>
|
||||||
@ -724,7 +697,7 @@ export default function NodeForm<T extends { [x: string]: any }>({
|
|||||||
/>
|
/>
|
||||||
<FormField
|
<FormField
|
||||||
control={form.control}
|
control={form.control}
|
||||||
name='config.security_config.public_key'
|
name='config.security_config.reality_public_key'
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t('form.security_config.publicKey')}</FormLabel>
|
<FormLabel>{t('form.security_config.publicKey')}</FormLabel>
|
||||||
@ -743,7 +716,7 @@ export default function NodeForm<T extends { [x: string]: any }>({
|
|||||||
/>
|
/>
|
||||||
<FormField
|
<FormField
|
||||||
control={form.control}
|
control={form.control}
|
||||||
name='config.security_config.short_id'
|
name='config.security_config.reality_short_id'
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>{t('form.security_config.shortId')}</FormLabel>
|
<FormLabel>{t('form.security_config.shortId')}</FormLabel>
|
||||||
|
|||||||
@ -70,7 +70,6 @@
|
|||||||
"fingerprint": "Fingerprint",
|
"fingerprint": "Fingerprint",
|
||||||
"privateKey": "Private Key",
|
"privateKey": "Private Key",
|
||||||
"privateKeyPlaceholder": "Leave blank for auto-generation",
|
"privateKeyPlaceholder": "Leave blank for auto-generation",
|
||||||
"proxyProtocol": "Proxy Protocol",
|
|
||||||
"publicKey": "Public Key",
|
"publicKey": "Public Key",
|
||||||
"publicKeyPlaceholder": "Leave blank for auto-generation",
|
"publicKeyPlaceholder": "Leave blank for auto-generation",
|
||||||
"serverAddress": "Server Address",
|
"serverAddress": "Server Address",
|
||||||
|
|||||||
@ -70,7 +70,6 @@
|
|||||||
"fingerprint": "FingerPrint",
|
"fingerprint": "FingerPrint",
|
||||||
"privateKey": "Private Key",
|
"privateKey": "Private Key",
|
||||||
"privateKeyPlaceholder": "留空自动生成",
|
"privateKeyPlaceholder": "留空自动生成",
|
||||||
"proxyProtocol": "Proxy Protocol",
|
|
||||||
"publicKey": "Public Key",
|
"publicKey": "Public Key",
|
||||||
"publicKeyPlaceholder": "留空自动生成",
|
"publicKeyPlaceholder": "留空自动生成",
|
||||||
"serverAddress": "Server Address",
|
"serverAddress": "Server Address",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user