[GH-ISSUE #993] 使用快速安装最新版本后部分页面报服务器端500错误 #2100

Closed
opened 2026-02-27 12:17:44 +03:00 by kerem · 0 comments
Owner

Originally created by @xcancloud on GitHub (Apr 29, 2025).
Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/993

Describe the bug
使用快速安装最新版本后部分页面报服务器端500错误:

Screenshots

Image

Info (please complete the following information):

  • Server OS: CentOS 7.5 64bit
  • Server Arch: x86
  • Nginx UI Version: 2.0.0-rc.5
  • Your Browser: Chrome, Safari, Firefox

Additional context
使用快速安装脚本安装后,只配置了Nginx反向代理,以下是 nginx 配置:

Nginx 主配置文件:
http { # ... include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; }

Nginx UI Server:
` server {
listen 80;
listen [::]:80;

    server_name nginx.xcan.cloud;

    rewrite ^(.*)$ https://$host$1 permanent;
}


map $http_upgrade $connection_upgrade {
   default upgrade;
   ''      close;
}

server {
    listen 443 ssl; 
    listen [::]:443  ssl;

`

Originally created by @xcancloud on GitHub (Apr 29, 2025). Original GitHub issue: https://github.com/0xJacky/nginx-ui/issues/993 **Describe the bug** 使用快速安装最新版本后部分页面报服务器端500错误: **Screenshots** ![Image](https://github.com/user-attachments/assets/09058e16-b036-47a3-9ef9-ee66bc67bef9) **Info (please complete the following information):** - Server OS: CentOS 7.5 64bit - Server Arch: x86 - Nginx UI Version: 2.0.0-rc.5 - Your Browser: Chrome, Safari, Firefox **Additional context** 使用快速安装脚本安装后,只配置了Nginx反向代理,以下是 nginx 配置: Nginx 主配置文件: `http { # ... include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; }` Nginx UI Server: ` server { listen 80; listen [::]:80; server_name nginx.xcan.cloud; rewrite ^(.*)$ https://$host$1 permanent; } map $http_upgrade $connection_upgrade { default upgrade; '' close; } server { listen 443 ssl; listen [::]:443 ssl; `
kerem 2026-02-27 12:17:44 +03:00
  • closed this issue
  • added the
    bug
    label
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#2100
No description provided.