Skip to content

Commit bc7b2c3

Browse files
authored
CNV-59923: Fix Console Plugin access in case of single stack IPv6 (#3494)
Signed-off-by: Oren Cohen <[email protected]>
1 parent bcb1de9 commit bc7b2c3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

controllers/operands/kubevirtConsolePlugin.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ http {
317317
keepalive_timeout 65;
318318
add_header X-Content-Type-Options nosniff;
319319
server {
320-
listen %d ssl;
320+
listen %[1]d ssl;
321+
listen [::]:%[1]d ssl;
321322
ssl_certificate /var/serving-cert/tls.crt;
322323
ssl_certificate_key /var/serving-cert/tls.key;
323324
root /usr/share/nginx/html;

0 commit comments

Comments
 (0)