mirror of
https://github.com/alireza0/s-ui.git
synced 2026-09-01 01:19:09 +00:00
fix alpn
This commit is contained in:
parent
63dc779f68
commit
2cc78da07f
2 changed files with 4 additions and 4 deletions
|
|
@ -143,9 +143,9 @@ export default {
|
|||
usePath: 0,
|
||||
defaults: defaultInTls,
|
||||
alpn: [
|
||||
{ title: "H3", value: 'HTTP/3' },
|
||||
{ title: "H2", value: 'HTTP/2' },
|
||||
{ title: "Http1.1", value: 'HTTP/1.1' },
|
||||
{ title: "H3", value: 'h3' },
|
||||
{ title: "H2", value: 'h2' },
|
||||
{ title: "Http/1.1", value: 'http/1.1' },
|
||||
],
|
||||
tlsVersions: [ '1.0', '1.1', '1.2', '1.3' ],
|
||||
cipher_suites: [
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ export interface iTls {
|
|||
}
|
||||
|
||||
export const defaultInTls: iTls = {
|
||||
alpn: ['HTTP/3', 'HTTP/2', 'HTTP/1.1'],
|
||||
alpn: ['h3', 'h2', 'http/1.1'],
|
||||
min_version: "1.2",
|
||||
max_version: "1.3",
|
||||
cipher_suites: [""],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue