mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-04-25 00:36:08 +03:00
[GH-ISSUE #1066] SSE #575
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#575
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 @atie2001 on GitHub (May 21, 2025).
Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/1066
不管是用包启动,docker,一键安装,自检的时候都过不了这个 : SSE:支持通过 Server-Sent Events 协议与后端通信。如果您的 Nginx UI 是通过 Nginx 反向代理使用的,请参考此链接编写相应的配置文件:https://nginxui.com/guide/nginx-proxy-example.html
@0xJacky commented on GitHub (May 21, 2025):
有做反向代理吗
@atie2001 commented on GitHub (May 21, 2025):
For more information on configuration, see:
* Official English Documentation: http://nginx.org/en/docs/
* Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
server {
listen 80;
listen [::]:80;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
#http2 on;
}
}
@dengliyao commented on GitHub (May 21, 2025):
打开页面时候,不要等它检查完,直接点下一步好像就可以。我刚才也是出现这个问题
@0xJacky commented on GitHub (May 21, 2025):
在 location / {} 中添加
@jsscore commented on GitHub (May 21, 2025):
我并未配置反向代理,也遇到了SSE检查不通过的情况。
在 location / {} 中添加配置检查依旧无法通过。
proxy_cache off; proxy_buffering off;不等检查结束,直接点下一步进去后,在系统-自我检查中,SSE部分显示检查通过。
环境:
nginx 1.16.1
配置文件默认未作任何修改,通过nginxui修复了部分配置
@majiajun7 commented on GitHub (May 22, 2025):
This problem still exists
@0xJacky commented on GitHub (May 23, 2025):
Hi, @dengliyao @jsscore @majiajun7 @atie2001 , thanks for your report, this issue will be fixed in v2.0.1.
此问题将会在 v2.0.1 中修复,感谢反馈