2025-11-02 23:49:54 -08:00
#!/usr/bin/env bash
2025-04-01 10:25:46 +02:00
source <( curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
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
2024-12-16 12:42:51 +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-03-22 20:48:20 -04:00
2023-04-01 05:36:01 -04:00
APP = "Nginx Proxy Manager"
2025-04-10 11:56:52 +02:00
var_tags = " ${ var_tags :- proxy } "
var_cpu = " ${ var_cpu :- 2 } "
2025-11-05 14:41:52 +01:00
var_ram = " ${ var_ram :- 2048 } "
var_disk = " ${ var_disk :- 8 } "
2025-04-10 11:56:52 +02:00
var_os = " ${ var_os :- debian } "
2026-02-07 19:41:37 +01:00
var_version = " ${ var_version :- 12 } "
2025-04-10 11:56:52 +02:00
var_unprivileged = " ${ var_unprivileged :- 1 } "
2024-12-16 12:42:51 +01:00
2025-04-01 10:25:46 +02:00
header_info " $APP "
2023-04-01 05:36:01 -04:00
variables
2023-03-22 20:48:20 -04:00
color
catch_errors
2023-04-01 05:36:01 -04:00
function update_script( ) {
header_info
2024-11-18 21:09:10 +01:00
check_container_storage
check_container_resources
2023-04-01 05:36:01 -04:00
if [ [ ! -f /lib/systemd/system/npm.service ] ] ; then
msg_error " No ${ APP } Installation Found! "
exit
fi
2026-02-02 13:11:34 +01:00
2025-11-06 02:47:25 -08:00
if [ [ $( grep -E '^VERSION_ID=' /etc/os-release) = = *"12" * ] ] ; then
msg_error "Wrong Debian version detected!"
msg_error "Please create a snapshot first. You must upgrade your LXC to Debian Trixie before updating. Visit: https://github.com/community-scripts/ProxmoxVE/discussions/7489"
exit
fi
2025-10-30 09:24:16 -07:00
if command -v node & >/dev/null; then
2025-10-22 17:18:35 +02:00
CURRENT_NODE_VERSION = $( node --version | cut -d'v' -f2 | cut -d'.' -f1)
if [ [ " $CURRENT_NODE_VERSION " != "22" ] ] ; then
systemctl stop openresty
apt-get purge -y nodejs npm
apt-get autoremove -y
rm -rf /usr/local/bin/node /usr/local/bin/npm
rm -rf /usr/local/lib/node_modules
rm -rf ~/.npm
rm -rf /root/.npm
fi
fi
2025-07-16 09:53:35 +03:00
2025-10-20 07:51:33 +02:00
NODE_VERSION = "22" NODE_MODULE = "yarn" setup_nodejs
2025-10-18 13:33:00 +02: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) }' )
2025-07-16 09:53:35 +03:00
2025-11-19 09:36:20 +01:00
CLEAN_INSTALL = 1 fetch_and_deploy_gh_release "nginxproxymanager" "NginxProxyManager/nginx-proxy-manager" "tarball" " v ${ RELEASE } " "/opt/nginxproxymanager"
2025-11-18 14:23:03 +01:00
2023-04-01 05:36:01 -04:00
msg_info "Stopping Services"
systemctl stop openresty
systemctl stop npm
msg_ok "Stopped Services"
2025-11-05 14:41:52 +01:00
msg_info "Cleaning old files"
$STD rm -rf /app \
2023-04-01 05:36:01 -04:00
/var/www/html \
/etc/nginx \
/var/log/nginx \
/var/lib/nginx \
2025-11-05 14:41:52 +01:00
/var/cache/nginx
msg_ok "Cleaned old files"
2023-04-01 05:36:01 -04:00
2025-07-16 09:53:35 +03:00
msg_info "Setting up Environment"
2023-04-01 05:36:01 -04: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-04-01 05:36:01 -04:00
for NGINX_CONF in $NGINX_CONFS ; do
sed -i 's+include conf.d+include /etc/nginx/conf.d+g' " $NGINX_CONF "
done
2025-11-05 14:41:52 +01:00
2023-04-01 05:36:01 -04:00
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-04-01 05:36:01 -04:00
ln -sf /etc/nginx/nginx.conf /etc/nginx/conf/nginx.conf
rm -f /etc/nginx/conf.d/dev.conf
2025-11-05 14:41:52 +01:00
2023-04-01 05:36:01 -04:00
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
2025-11-05 14:41:52 +01:00
2023-04-01 05:36:01 -04:00
chmod -R 777 /var/cache/nginx
chown root /tmp/nginx
2025-11-05 14:41:52 +01:00
2023-04-01 05:36:01 -04:00
echo resolver " $( awk 'BEGIN{ORS=" "} $1=="nameserver" {print ($2 ~ ":")? "["$2"]": $2}' /etc/resolv.conf) ; " >/etc/nginx/conf.d/include/resolvers.conf
2025-11-05 14:41:52 +01:00
2023-04-01 05:36:01 -04:00
if [ ! -f /data/nginx/dummycert.pem ] || [ ! -f /data/nginx/dummykey.pem ] ; then
2025-02-24 12:49:16 +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-04-01 05:36:01 -04:00
fi
2025-10-18 13:33:00 +02:00
2025-11-05 14:41:52 +01:00
mkdir -p /app/frontend/images
cp -r /opt/nginxproxymanager/backend/* /app
msg_ok "Set up Environment"
msg_info "Building Frontend"
export NODE_OPTIONS = "--max_old_space_size=2048 --openssl-legacy-provider"
2026-01-06 13:45:03 +01:00
cd /opt/nginxproxymanager/frontend
2025-11-05 14:41:52 +01:00
# Replace node-sass with sass in package.json before installation
sed -E -i 's/"node-sass" *: *"([^"]*)"/"sass": "\1"/g' package.json
$STD yarn install --network-timeout 600000
2025-12-27 09:17:30 +00:00
$STD yarn locale-compile
2025-11-05 14:41:52 +01:00
$STD yarn build
cp -r /opt/nginxproxymanager/frontend/dist/* /app/frontend
cp -r /opt/nginxproxymanager/frontend/public/images/* /app/frontend/images
msg_ok "Built Frontend"
2023-04-01 05:36:01 -04:00
msg_info "Initializing Backend"
2025-11-05 14:41:52 +01:00
rm -rf /app/config/default.json
2023-04-01 05:36:01 -04:00
if [ ! -f /app/config/production.json ] ; then
cat <<'EOF' >/app/config/production.json
2023-03-22 20:48:20 -04:00
{
"database" : {
"engine" : "knex-native" ,
"knex" : {
2026-02-09 10:33:44 +01:00
"client" : "better-sqlite3" ,
2023-03-22 20:48:20 -04:00
"connection" : {
"filename" : "/data/database.sqlite"
2026-02-09 10:33:44 +01:00
} ,
"useNullAsDefault" : true
2023-03-22 20:48:20 -04:00
}
}
}
EOF
2023-04-01 05:36:01 -04:00
fi
2026-02-09 10:33:44 +01:00
sed -i 's/"client": "sqlite3"/"client": "better-sqlite3"/' /app/config/production.json
2026-01-06 22:57:40 +01:00
cd /app
2025-10-18 13:33:00 +02:00
$STD yarn install --network-timeout 600000
2023-04-01 05:36:01 -04:00
msg_ok "Initialized Backend"
2025-11-06 02:47:25 -08:00
2025-11-05 14:41:52 +01:00
msg_info "Updating Certbot"
[ -f /etc/apt/trusted.gpg.d/openresty-archive-keyring.gpg ] && rm -f /etc/apt/trusted.gpg.d/openresty-archive-keyring.gpg
[ -f /etc/apt/sources.list.d/openresty.list ] && rm -f /etc/apt/sources.list.d/openresty.list
[ ! -f /etc/apt/trusted.gpg.d/openresty.gpg ] && curl -fsSL https://openresty.org/package/pubkey.gpg | gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/openresty.gpg
[ ! -f /etc/apt/sources.list.d/openresty.sources ] && 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
$STD apt update
$STD apt -y install openresty
if [ -d /opt/certbot ] ; then
$STD /opt/certbot/bin/pip install --upgrade pip setuptools wheel
$STD /opt/certbot/bin/pip install --upgrade certbot certbot-dns-cloudflare
fi
msg_ok "Updated Certbot"
2023-04-01 05:36:01 -04:00
msg_info "Starting Services"
2023-05-10 10:10:46 -04:00
sed -i 's/user npm/user root/g; s/^pid/#pid/g' /usr/local/openresty/nginx/conf/nginx.conf
2025-11-05 14:41:52 +01:00
sed -r -i 's/^([[:space:]]*)su npm npm/\1#su npm npm/g;' /etc/logrotate.d/nginx-proxy-manager
2023-04-27 01:34:39 -04:00
systemctl enable -q --now openresty
systemctl enable -q --now npm
2025-11-05 14:41:52 +01:00
systemctl restart openresty
2023-04-01 05:36:01 -04:00
msg_ok "Started Services"
2025-10-30 09:24:16 -07:00
msg_ok "Updated successfully!"
2023-04-01 05:36:01 -04:00
exit
}
2023-03-22 20:48:20 -04:00
2023-04-01 05:36:01 -04:00
start
build_container
description
2023-03-22 20:48:20 -04:00
2026-01-06 22:57:40 +01:00
msg_ok "Completed successfully!\n"
2024-12-16 12:42:51 +01:00
echo -e " ${ CREATING } ${ GN } ${ APP } setup has been successfully initialized! ${ CL } "
echo -e " ${ INFO } ${ YW } Access it using the following URL: ${ CL } "
2025-04-01 14:46:15 +02:00
echo -e " ${ TAB } ${ GATEWAY } ${ BGN } http:// ${ IP } :81 ${ CL } "