mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-04-26 01:05:52 +03:00
[GH-ISSUE #1061] SSE standard set reverse Proxy is not in Document #4999
Labels
No labels
Q/A
bug
casdoor
dependencies
docker
documentation
duplicate
enhancement
help wanted
invalid
lego
platform:openwrt
platform:windows
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nginx-ui#4999
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Altria-Pendr on GitHub (May 18, 2025).
Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/1061
dear DEV
this report is about SSE nginx config is not be write in Document [https://nginxui.com/zh_CN/guide/nginx-proxy-example.html](nginx config in reverse Proxy)
i use server {
listen 80;
listen [::]:80;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
}
@Altria-Pendr commented on GitHub (May 18, 2025):
@0xJacky commented on GitHub (May 19, 2025):
Hello, this is due to a problem with the Nginx version. For versions v1.25.1 and above, use "http2 on"; for older versions, use "listen 443 ssl http2";
For more details, please check: https://nginx.org/en/docs/http/ngx_http_v2_module.html#http2