mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-13 16:53:27 +01:00
* Add nginx-ui (ct) * Update date_created and default credentials in JSON added json information (password) --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com>
100 lines
2.3 KiB
Bash
100 lines
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://nginxui.com
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y \
|
|
nginx \
|
|
logrotate
|
|
msg_ok "Installed Dependencies"
|
|
|
|
fetch_and_deploy_gh_release "nginx-ui" "0xJacky/nginx-ui" "prebuild" "latest" "/opt/nginx-ui" "nginx-ui-linux-64.tar.gz"
|
|
|
|
msg_info "Installing Nginx UI"
|
|
cp /opt/nginx-ui/nginx-ui /usr/local/bin/nginx-ui
|
|
chmod +x /usr/local/bin/nginx-ui
|
|
rm -rf /opt/nginx-ui
|
|
msg_ok "Installed Nginx UI"
|
|
|
|
msg_info "Configuring Nginx UI"
|
|
mkdir -p /usr/local/etc/nginx-ui
|
|
cat <<EOF >/usr/local/etc/nginx-ui/app.ini
|
|
[server]
|
|
HttpHost = 0.0.0.0
|
|
HttpPort = 9000
|
|
RunMode = release
|
|
JwtSecret = $(openssl rand -hex 32)
|
|
|
|
[nginx]
|
|
AccessLogPath = /var/log/nginx/access.log
|
|
ErrorLogPath = /var/log/nginx/error.log
|
|
ConfigDir = /etc/nginx
|
|
PIDPath = /run/nginx.pid
|
|
TestConfigCmd = nginx -t
|
|
ReloadCmd = nginx -s reload
|
|
RestartCmd = systemctl restart nginx
|
|
|
|
[app]
|
|
PageSize = 10
|
|
|
|
[cert]
|
|
Email =
|
|
CADir =
|
|
RenewalInterval = 7
|
|
RecursiveNameservers =
|
|
EOF
|
|
msg_ok "Configured Nginx UI"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/nginx-ui.service
|
|
[Unit]
|
|
Description=Another WebUI for Nginx
|
|
Documentation=https://nginxui.com
|
|
After=network.target nginx.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/local/bin/nginx-ui --config /usr/local/etc/nginx-ui/app.ini
|
|
RuntimeDirectory=nginx-ui
|
|
WorkingDirectory=/var/run/nginx-ui
|
|
Restart=on-failure
|
|
TimeoutStopSec=5
|
|
KillMode=mixed
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl daemon-reload
|
|
msg_ok "Created Service"
|
|
|
|
msg_info "Creating Initial Admin User"
|
|
systemctl start nginx-ui
|
|
sleep 3
|
|
systemctl stop nginx-ui
|
|
sleep 1
|
|
/usr/local/bin/nginx-ui reset-password --config /usr/local/etc/nginx-ui/app.ini &>/tmp/nginx-ui-reset.log || true
|
|
ADMIN_PASS=$(grep -oP 'Password: \K\S+' /tmp/nginx-ui-reset.log || echo "admin")
|
|
echo -e "Nginx-UI Credentials\nUsername: admin\nPassword: $ADMIN_PASS" >~/nginx-ui.creds
|
|
rm -f /tmp/nginx-ui-reset.log
|
|
msg_ok "Created Initial Admin User"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl enable -q --now nginx-ui
|
|
rm -rf /etc/nginx/sites-enabled/default
|
|
msg_ok "Started Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|