2023-01-04 16:38:41 -05:00
|
|
|
#!/usr/bin/env bash
|
2023-02-07 12:15:22 -05:00
|
|
|
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
2025-11-05 14:41:52 +01:00
|
|
|
# Author: tteck (tteckster) | Co-Author: CrazyWolf13
|
2025-03-04 17:54:20 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
several scripts: add additional github link in source (#12282)
* fix(error-handler): prevent silent() from re-enabling error handling during recovery
Root cause: silent() (core.func) unconditionally calls set -Eeuo pipefail
and trap 'error_handler' ERR after every command. When build_container()
intentionally disables error handling for its recovery section, any
intermediate call through silent()/ re-enables it. This causes the
grep/sed pipeline for missing_cmd extraction to trigger error_handler
(grep returns exit code 1 on no match + pipefail = fatal).
Fixes:
1. silent(): Save errexit state before disabling, only restore if it was
active. Callers that intentionally disabled error handling (e.g.
build_container recovery) are no longer silently re-enabled.
2. build.func: Add || true to missing_cmd grep pipeline as defense-in-depth
against pipeline failure propagation.
3. build.func: Add explicit set +Eeuo pipefail / trap - ERR after
post_update_to_api() call, before error classification grep/sed section.
4. build.func: Remove stale global combined_log variable from variables()
that used a different path format (/tmp/install-SESSION-combined.log)
than the actual local variable (/tmp/NSAPP-CTID-SESSION.log). The global
was never written to and caused confusion when error_handler displayed it.
* Update build.func
* chore(install): add Github source links to all setup_nodejs scripts
52 install scripts had a project website in '# Source:' but no GitHub
link. Merged the GitHub repo URL into the Source header as:
# Source: https://website.com/ | Github: https://github.com/OWNER/REPO
Repos sourced from fetch_and_deploy_gh_release calls, get_latest_github_release
calls, or known project repos for npm/pip installed apps.
Two scripts (fumadocs, pve-scripts-local) had no Source line at all —
added one. Shinobi skipped (GitLab-only, no GitHub repo).
* chore(install): add Github source links to all fetch_and_deploy scripts
77 additional install scripts had fetch_and_deploy_gh_release calls but
no GitHub link in the Source header. Merged the primary app repo into
the Source header as:
# Source: https://website.com/ | Github: https://github.com/OWNER/REPO
Where multiple fetch_and_deploy calls existed (app + dependency), the
primary app repo was selected:
- ersatztv: ErsatzTV/ErsatzTV (not ffmpeg)
- firefly: firefly-iii/firefly-iii (not data-importer)
- komga: gotson/komga (not kepubify dep)
- sabnzbd: sabnzbd/sabnzbd (not par2cmdline-turbo dep)
- signoz: SigNoz/signoz (not otel-collector)
- tunarr: chrisbenincasa/tunarr (not ffmpeg dep)
Also fixed cosmos-install.sh double https:// in Source URL.
Skipped: autocaliweb (source already on codeberg, GitHub repos are deps only)
* revert: restore misc/build.func and misc/core.func to main state
These error-handler fixes belong to fix/error-handler-recovery, not to
this sources-only branch.
* chore(ct,tools): sync Source headers with install/ and add Github links to addon scripts
2026-02-24 15:11:53 +01:00
|
|
|
# Source: https://nginxproxymanager.com/ | Github: https://github.com/NginxProxyManager/nginx-proxy-manager
|
2023-02-07 12:15:22 -05:00
|
|
|
|
2023-06-20 10:36:49 -04:00
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
2023-03-22 20:48:20 -04:00
|
|
|
color
|
|
|
|
|
verb_ip6
|
|
|
|
|
catch_errors
|
|
|
|
|
setting_up_container
|
|
|
|
|
network_check
|
|
|
|
|
update_os
|
2023-01-04 16:38:41 -05:00
|
|
|
|
|
|
|
|
msg_info "Installing Dependencies"
|
2025-10-15 22:29:48 +02:00
|
|
|
$STD apt update
|
|
|
|
|
$STD apt -y install \
|
2023-01-04 16:38:41 -05:00
|
|
|
ca-certificates \
|
|
|
|
|
apache2-utils \
|
|
|
|
|
logrotate \
|
|
|
|
|
build-essential \
|
2023-06-18 16:44:29 -04:00
|
|
|
git
|
2023-01-04 16:38:41 -05:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
2023-09-13 04:20:38 -04:00
|
|
|
msg_info "Installing Python Dependencies"
|
2025-10-15 22:29:48 +02:00
|
|
|
$STD apt install -y \
|
2023-06-20 10:36:49 -04:00
|
|
|
python3 \
|
|
|
|
|
python3-dev \
|
|
|
|
|
python3-pip \
|
|
|
|
|
python3-venv \
|
2025-10-18 13:33:00 +02:00
|
|
|
python3-cffi
|
2023-09-13 04:20:38 -04:00
|
|
|
msg_ok "Installed Python Dependencies"
|
2023-01-04 16:38:41 -05:00
|
|
|
|
2025-10-18 13:33:00 +02:00
|
|
|
msg_info "Setting up Certbot"
|
|
|
|
|
$STD python3 -m venv /opt/certbot
|
|
|
|
|
$STD /opt/certbot/bin/pip install --upgrade pip setuptools wheel
|
|
|
|
|
$STD /opt/certbot/bin/pip install certbot certbot-dns-cloudflare
|
|
|
|
|
ln -sf /opt/certbot/bin/certbot /usr/local/bin/certbot
|
|
|
|
|
msg_ok "Set up Certbot"
|
|
|
|
|
|
2023-01-04 16:38:41 -05:00
|
|
|
msg_info "Installing Openresty"
|
2025-11-05 14:41:52 +01:00
|
|
|
curl -fsSL "https://openresty.org/package/pubkey.gpg" | gpg --dearmor -o /etc/apt/trusted.gpg.d/openresty.gpg
|
|
|
|
|
cat <<'EOF' >/etc/apt/sources.list.d/openresty.sources
|
|
|
|
|
Types: deb
|
|
|
|
|
URIs: http://openresty.org/package/debian/
|
|
|
|
|
Suites: bookworm
|
|
|
|
|
Components: openresty
|
|
|
|
|
Signed-By: /etc/apt/trusted.gpg.d/openresty.gpg
|
|
|
|
|
EOF
|
2025-10-15 22:29:48 +02:00
|
|
|
$STD apt update
|
|
|
|
|
$STD apt -y install openresty
|
2023-01-04 16:38:41 -05:00
|
|
|
msg_ok "Installed Openresty"
|
|
|
|
|
|
2025-10-18 13:33:00 +02:00
|
|
|
NODE_VERSION="22" NODE_MODULE="yarn" setup_nodejs
|
2023-01-04 16:38:41 -05:00
|
|
|
|
2026-01-14 09:00:32 +00:00
|
|
|
RELEASE=$(curl -fsSL https://api.github.com/repos/NginxProxyManager/nginx-proxy-manager/releases/latest |
|
|
|
|
|
grep "tag_name" |
|
|
|
|
|
awk '{print substr($2, 3, length($2)-4) }')
|
2023-01-04 16:38:41 -05:00
|
|
|
|
2026-01-14 09:00:32 +00:00
|
|
|
fetch_and_deploy_gh_release "nginxproxymanager" "NginxProxyManager/nginx-proxy-manager" "tarball" "v${RELEASE}"
|
2025-10-16 17:02:04 +02:00
|
|
|
|
2024-12-04 16:30:37 +01:00
|
|
|
msg_info "Setting up Environment"
|
2023-01-04 16:38:41 -05:00
|
|
|
ln -sf /usr/bin/python3 /usr/bin/python
|
|
|
|
|
ln -sf /usr/local/openresty/nginx/sbin/nginx /usr/sbin/nginx
|
|
|
|
|
ln -sf /usr/local/openresty/nginx/ /etc/nginx
|
2025-11-05 14:41:52 +01:00
|
|
|
sed -i "s|\"version\": \"2.0.0\"|\"version\": \"$RELEASE\"|" /opt/nginxproxymanager/backend/package.json
|
|
|
|
|
sed -i "s|\"version\": \"2.0.0\"|\"version\": \"$RELEASE\"|" /opt/nginxproxymanager/frontend/package.json
|
|
|
|
|
sed -i 's+^daemon+#daemon+g' /opt/nginxproxymanager/docker/rootfs/etc/nginx/nginx.conf
|
|
|
|
|
NGINX_CONFS=$(find /opt/nginxproxymanager -type f -name "*.conf")
|
2023-01-04 16:38:41 -05:00
|
|
|
for NGINX_CONF in $NGINX_CONFS; do
|
|
|
|
|
sed -i 's+include conf.d+include /etc/nginx/conf.d+g' "$NGINX_CONF"
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
mkdir -p /var/www/html /etc/nginx/logs
|
2025-11-05 14:41:52 +01:00
|
|
|
cp -r /opt/nginxproxymanager/docker/rootfs/var/www/html/* /var/www/html/
|
|
|
|
|
cp -r /opt/nginxproxymanager/docker/rootfs/etc/nginx/* /etc/nginx/
|
|
|
|
|
cp /opt/nginxproxymanager/docker/rootfs/etc/letsencrypt.ini /etc/letsencrypt.ini
|
|
|
|
|
cp /opt/nginxproxymanager/docker/rootfs/etc/logrotate.d/nginx-proxy-manager /etc/logrotate.d/nginx-proxy-manager
|
2023-01-04 16:38:41 -05:00
|
|
|
ln -sf /etc/nginx/nginx.conf /etc/nginx/conf/nginx.conf
|
|
|
|
|
rm -f /etc/nginx/conf.d/dev.conf
|
|
|
|
|
|
|
|
|
|
mkdir -p /tmp/nginx/body \
|
|
|
|
|
/run/nginx \
|
|
|
|
|
/data/nginx \
|
|
|
|
|
/data/custom_ssl \
|
|
|
|
|
/data/logs \
|
|
|
|
|
/data/access \
|
|
|
|
|
/data/nginx/default_host \
|
|
|
|
|
/data/nginx/default_www \
|
|
|
|
|
/data/nginx/proxy_host \
|
|
|
|
|
/data/nginx/redirection_host \
|
|
|
|
|
/data/nginx/stream \
|
|
|
|
|
/data/nginx/dead_host \
|
|
|
|
|
/data/nginx/temp \
|
|
|
|
|
/var/lib/nginx/cache/public \
|
|
|
|
|
/var/lib/nginx/cache/private \
|
|
|
|
|
/var/cache/nginx/proxy_temp
|
|
|
|
|
|
|
|
|
|
chmod -R 777 /var/cache/nginx
|
|
|
|
|
chown root /tmp/nginx
|
|
|
|
|
|
|
|
|
|
echo resolver "$(awk 'BEGIN{ORS=" "} $1=="nameserver" {print ($2 ~ ":")? "["$2"]": $2}' /etc/resolv.conf);" >/etc/nginx/conf.d/include/resolvers.conf
|
|
|
|
|
|
|
|
|
|
if [ ! -f /data/nginx/dummycert.pem ] || [ ! -f /data/nginx/dummykey.pem ]; then
|
2025-11-05 14:41:52 +01:00
|
|
|
$STD openssl req -new -newkey rsa:2048 -days 3650 -nodes -x509 -subj "/O=Nginx Proxy Manager/OU=Dummy Certificate/CN=localhost" -keyout /data/nginx/dummykey.pem -out /data/nginx/dummycert.pem
|
2023-01-04 16:38:41 -05:00
|
|
|
fi
|
|
|
|
|
|
2025-11-05 14:41:52 +01:00
|
|
|
mkdir -p /app/frontend/images
|
|
|
|
|
cp -r /opt/nginxproxymanager/backend/* /app
|
2025-03-16 18:30:12 +01:00
|
|
|
msg_ok "Set up Environment"
|
2023-01-04 16:38:41 -05:00
|
|
|
|
|
|
|
|
msg_info "Building Frontend"
|
2025-11-05 14:41:52 +01:00
|
|
|
export NODE_OPTIONS="--max_old_space_size=2048 --openssl-legacy-provider"
|
|
|
|
|
cd /opt/nginxproxymanager/frontend
|
2025-10-18 13:33:00 +02:00
|
|
|
# Replace node-sass with sass in package.json before installation
|
2025-11-05 14:41:52 +01:00
|
|
|
sed -E -i 's/"node-sass" *: *"([^"]*)"/"sass": "\1"/g' package.json
|
2025-10-18 13:33:00 +02:00
|
|
|
$STD yarn install --network-timeout 600000
|
2025-12-27 09:17:30 +00:00
|
|
|
$STD yarn locale-compile
|
2025-10-18 13:33:00 +02:00
|
|
|
$STD yarn build
|
2025-11-05 14:41:52 +01:00
|
|
|
cp -r /opt/nginxproxymanager/frontend/dist/* /app/frontend
|
|
|
|
|
cp -r /opt/nginxproxymanager/frontend/public/images/* /app/frontend/images
|
2023-01-04 16:38:41 -05:00
|
|
|
msg_ok "Built Frontend"
|
|
|
|
|
|
|
|
|
|
msg_info "Initializing Backend"
|
|
|
|
|
rm -rf /app/config/default.json
|
|
|
|
|
if [ ! -f /app/config/production.json ]; then
|
|
|
|
|
cat <<'EOF' >/app/config/production.json
|
|
|
|
|
{
|
|
|
|
|
"database": {
|
|
|
|
|
"engine": "knex-native",
|
|
|
|
|
"knex": {
|
2026-02-09 10:33:44 +01:00
|
|
|
"client": "better-sqlite3",
|
2023-01-04 16:38:41 -05:00
|
|
|
"connection": {
|
|
|
|
|
"filename": "/data/database.sqlite"
|
2026-02-09 10:33:44 +01:00
|
|
|
},
|
|
|
|
|
"useNullAsDefault": true
|
2023-01-04 16:38:41 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
EOF
|
|
|
|
|
fi
|
|
|
|
|
cd /app
|
2025-10-18 13:33:00 +02:00
|
|
|
$STD yarn install --network-timeout 600000
|
2023-01-04 16:38:41 -05:00
|
|
|
msg_ok "Initialized Backend"
|
|
|
|
|
|
|
|
|
|
msg_info "Creating Service"
|
|
|
|
|
cat <<'EOF' >/lib/systemd/system/npm.service
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=Nginx Proxy Manager
|
|
|
|
|
After=network.target
|
|
|
|
|
Wants=openresty.service
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=simple
|
|
|
|
|
Environment=NODE_ENV=production
|
|
|
|
|
ExecStartPre=-mkdir -p /tmp/nginx/body /data/letsencrypt-acme-challenge
|
|
|
|
|
ExecStart=/usr/bin/node index.js --abort_on_uncaught_exception --max_old_space_size=250
|
|
|
|
|
WorkingDirectory=/app
|
|
|
|
|
Restart=on-failure
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
EOF
|
|
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
|
|
|
|
msg_info "Starting Services"
|
2023-05-10 10:13:58 -04:00
|
|
|
sed -i 's/user npm/user root/g; s/^pid/#pid/g' /usr/local/openresty/nginx/conf/nginx.conf
|
2024-05-21 00:38:47 +01:00
|
|
|
sed -r -i 's/^([[:space:]]*)su npm npm/\1#su npm npm/g;' /etc/logrotate.d/nginx-proxy-manager
|
2024-01-21 05:43:47 -05:00
|
|
|
systemctl enable -q --now openresty
|
|
|
|
|
systemctl enable -q --now npm
|
2025-11-22 17:27:13 +01:00
|
|
|
systemctl restart openresty
|
2023-01-04 16:38:41 -05:00
|
|
|
msg_ok "Started Services"
|
|
|
|
|
|
2025-11-05 14:41:52 +01:00
|
|
|
motd_ssh
|
|
|
|
|
customize
|
2025-11-22 17:27:13 +01:00
|
|
|
cleanup_lxc
|