[GH-ISSUE #183] Update deprecated TLS directives #4529

Closed
opened 2026-03-01 15:33:57 +03:00 by kerem · 1 comment
Owner

Originally created by @ollie-galbraith on GitHub (Nov 10, 2023).
Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/183

Is your feature request related to a problem? Please describe.
Hoping you can update the default TLS directives from the deprecated

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
...
}

to the current directive of

server {
    listen 443 ssl;
    listen [::]:443 ssl;
    http2 on;
...
}

reference - https://www.nginx.com/blog/nginx-plus-r30-released/

Originally created by @ollie-galbraith on GitHub (Nov 10, 2023). Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/183 **Is your feature request related to a problem? Please describe.** Hoping you can update the default TLS directives from the deprecated ``` server { listen 443 ssl http2; listen [::]:443 ssl http2; ... } ``` to the current directive of ``` server { listen 443 ssl; listen [::]:443 ssl; http2 on; ... } ``` reference - https://www.nginx.com/blog/nginx-plus-r30-released/
kerem 2026-03-01 15:33:57 +03:00
Author
Owner

@0xJacky commented on GitHub (Nov 10, 2023):

Thanks

<!-- gh-comment-id:1805259870 --> @0xJacky commented on GitHub (Nov 10, 2023): Thanks
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-ui#4529
No description provided.