mirror of
https://github.com/digitalocean/nginxconfig.io.git
synced 2025-09-23 20:54:31 +08:00
Forgot to remove these
This commit is contained in:
@@ -66,7 +66,7 @@ const httpsListen = domain => {
|
|||||||
// HTTP/3
|
// HTTP/3
|
||||||
if (domain.https.http3.computed)
|
if (domain.https.http3.computed)
|
||||||
config.push(['listen',
|
config.push(['listen',
|
||||||
`${domain.server.listenIpv4.computed === '*' ? '' : `${domain.server.listenIpv4.computed}:`}443 http3${domain.https.portReuse.computed ? ' reuseport' : ''}`]);
|
`${domain.server.listenIpv4.computed === '*' ? '' : `${domain.server.listenIpv4.computed}:`}443 http3`]);
|
||||||
|
|
||||||
// v6
|
// v6
|
||||||
if (domain.server.listenIpv6.computed)
|
if (domain.server.listenIpv6.computed)
|
||||||
@@ -76,7 +76,7 @@ const httpsListen = domain => {
|
|||||||
// v6 HTTP/3
|
// v6 HTTP/3
|
||||||
if (domain.server.listenIpv6.computed && domain.https.http3.computed)
|
if (domain.server.listenIpv6.computed && domain.https.http3.computed)
|
||||||
config.push(['listen',
|
config.push(['listen',
|
||||||
`[${domain.server.listenIpv6.computed}]:443 http3${domain.https.portReuse.computed ? ' reuseport' : ''}`]);
|
`[${domain.server.listenIpv6.computed}]:443 http3`]);
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user