Forgot to remove these

This commit is contained in:
Daniel Walsh 2021-06-24 19:05:11 +01:00
parent 1a7f589c92
commit c7db039270
No known key found for this signature in database
GPG Key ID: 91C6D8D7C4011D82
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ const httpsListen = domain => {
// HTTP/3
if (domain.https.http3.computed)
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
if (domain.server.listenIpv6.computed)
@ -76,7 +76,7 @@ const httpsListen = domain => {
// v6 HTTP/3
if (domain.server.listenIpv6.computed && domain.https.http3.computed)
config.push(['listen',
`[${domain.server.listenIpv6.computed}]:443 http3${domain.https.portReuse.computed ? ' reuseport' : ''}`]);
`[${domain.server.listenIpv6.computed}]:443 http3`]);
return config;
};