proxmox-reverseProxy/lxc/nginx-proxy-manager/setup.sh

14 lines
257 B
Bash
Raw Normal View History

2020-11-04 16:50:28 +00:00
#!/usr/bin/env sh
set -euo pipefail
trap 'rm -rf $TMP' EXIT SIGINT SIGTERM
2020-11-04 16:50:28 +00:00
TMP=/tmp/npm_install.sh
URL=https://raw.githubusercontent.com/ej52/proxmox/main/lxc/nginx-proxy-manager/install.sh
2020-11-04 16:50:28 +00:00
rm -rf $TMP
wget -q -O "$TMP" "$URL"
2020-11-04 16:50:28 +00:00
chmod +x "$TMP"
sh "$TMP"
2020-11-04 16:50:28 +00:00