mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-14 09:13:26 +01:00
* fix(nginx-ui): remove admin user hack, use setup wizard instead The previous install script started nginx-ui for 3 seconds, stopped it, and ran reset-password to create an admin user. This caused: - Race condition: the internal setup wizard could trigger during the brief start window, conflicting with the reset-password approach - Admin users unable to login after the setup wizard fired - Settings lockup due to overloaded app.ini with hardcoded nginx paths that conflict with UI-managed settings Changes: - Remove start/stop/reset-password hack from install script - Simplify app.ini to match upstream defaults (minimal config) - Let users complete the natural setup wizard on first visit - Update JSON: remove default credentials, add setup wizard note - Add setup wizard hint to CT script output The setup wizard properly handles admin account creation and ACME email configuration, which are both needed for full functionality. Ref: ProxmoxVED#1408 * Update nginx-ui.sh
49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
{
|
|
"name": "Nginx UI",
|
|
"slug": "nginx-ui",
|
|
"categories": [
|
|
21
|
|
],
|
|
"date_created": "2026-02-05",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 9000,
|
|
"documentation": "https://nginxui.com/guide/",
|
|
"website": "https://nginxui.com",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/nginx-ui.webp",
|
|
"config_path": "/usr/local/etc/nginx-ui/app.ini",
|
|
"description": "Nginx UI is a comprehensive web-based interface designed to simplify the management and configuration of Nginx servers. It provides features like online statistics, ChatGPT-powered config assistant, automatic Let's Encrypt certificates, and config file editing with syntax highlighting.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/nginx-ui.sh",
|
|
"resources": {
|
|
"cpu": 1,
|
|
"ram": 512,
|
|
"hdd": 4,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "On first visit, the setup wizard will guide you to create an admin account and configure ACME email.",
|
|
"type": "warning"
|
|
},
|
|
{
|
|
"text": "Nginx runs on ports 80/443, Nginx UI management interface on port 9000.",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "SSL certificates can be managed automatically with Let's Encrypt integration.",
|
|
"type": "info"
|
|
}
|
|
]
|
|
}
|