|
|
@ -1,144 +1,144 @@ |
|
|
|
#!/usr/bin/env bash |
|
|
|
#!/usr/bin/env bash |
|
|
|
|
|
|
|
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) |
|
|
|
# Copyright (c) 2021-2023 tteck |
|
|
|
# Copyright (c) 2021-2023 tteck |
|
|
|
# Author: tteck (tteckster) |
|
|
|
# Author: tteck (tteckster) |
|
|
|
# License: MIT |
|
|
|
# License: MIT |
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
|
|
|
|
|
|
|
|
|
|
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" |
|
|
|
function header_info { |
|
|
|
|
|
|
|
clear |
|
|
|
|
|
|
|
cat <<"EOF" |
|
|
|
|
|
|
|
_ __ _ ____ __ ___ |
|
|
|
|
|
|
|
/ | / /___ _(_)___ _ __ / __ \_________ __ ____ __ / |/ /___ _____ ____ _____ ____ _____ |
|
|
|
|
|
|
|
/ |/ / __ / / __ \| |/_/ / /_/ / ___/ __ \| |/_/ / / / / /|_/ / __ / __ \/ __ / __ / _ \/ ___/ |
|
|
|
|
|
|
|
/ /| / /_/ / / / / /> < / ____/ / / /_/ /> </ /_/ / / / / / /_/ / / / / /_/ / /_/ / __/ / |
|
|
|
|
|
|
|
/_/ |_/\__, /_/_/ /_/_/|_| /_/ /_/ \____/_/|_|\__, / /_/ /_/\__,_/_/ /_/\__,_/\__, /\___/_/ |
|
|
|
|
|
|
|
/____/ /____/ /____/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EOF |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
header_info |
|
|
|
|
|
|
|
echo -e "Loading..." |
|
|
|
|
|
|
|
APP="Nginx Proxy Manager" |
|
|
|
|
|
|
|
var_disk="4" |
|
|
|
|
|
|
|
var_cpu="1" |
|
|
|
|
|
|
|
var_ram="1024" |
|
|
|
|
|
|
|
var_os="debian" |
|
|
|
|
|
|
|
var_version="11" |
|
|
|
|
|
|
|
variables |
|
|
|
color |
|
|
|
color |
|
|
|
verb_ip6 |
|
|
|
|
|
|
|
catch_errors |
|
|
|
catch_errors |
|
|
|
setting_up_container |
|
|
|
|
|
|
|
network_check |
|
|
|
|
|
|
|
update_os |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Dependencies" |
|
|
|
|
|
|
|
$STD apt-get update |
|
|
|
|
|
|
|
$STD apt-get -y install \ |
|
|
|
|
|
|
|
sudo \ |
|
|
|
|
|
|
|
mc \ |
|
|
|
|
|
|
|
curl \ |
|
|
|
|
|
|
|
gnupg \ |
|
|
|
|
|
|
|
make \ |
|
|
|
|
|
|
|
g++ \ |
|
|
|
|
|
|
|
gcc \ |
|
|
|
|
|
|
|
ca-certificates \ |
|
|
|
|
|
|
|
apache2-utils \ |
|
|
|
|
|
|
|
logrotate \ |
|
|
|
|
|
|
|
build-essential \ |
|
|
|
|
|
|
|
python3-dev \ |
|
|
|
|
|
|
|
git \ |
|
|
|
|
|
|
|
lsb-release |
|
|
|
|
|
|
|
msg_ok "Installed Dependencies" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Python" |
|
|
|
|
|
|
|
$STD apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv |
|
|
|
|
|
|
|
$STD pip3 install --upgrade setuptools |
|
|
|
|
|
|
|
$STD pip3 install --upgrade pip |
|
|
|
|
|
|
|
$STD python3 -m venv /opt/certbot/ |
|
|
|
|
|
|
|
if [ "$(getconf LONG_BIT)" = "32" ]; then |
|
|
|
|
|
|
|
$STD python3 -m pip install --no-cache-dir -U cryptography==3.3.2 |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
$STD python3 -m pip install --no-cache-dir cffi certbot |
|
|
|
|
|
|
|
msg_ok "Installed Python" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Openresty" |
|
|
|
|
|
|
|
$STD apt-key add <(curl -fsSL https://openresty.org/package/pubkey.gpg) |
|
|
|
|
|
|
|
sh -c 'echo "deb http://openresty.org/package/debian $(lsb_release -cs) openresty" > /etc/apt/sources.list.d/openresty.list' |
|
|
|
|
|
|
|
$STD apt-get -y update |
|
|
|
|
|
|
|
$STD apt-get -y install --no-install-recommends openresty |
|
|
|
|
|
|
|
msg_ok "Installed Openresty" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Setting up Node.js Repository" |
|
|
|
|
|
|
|
$STD bash <(curl -fsSL https://deb.nodesource.com/setup_16.x) |
|
|
|
|
|
|
|
msg_ok "Set up Node.js Repository" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Node.js" |
|
|
|
|
|
|
|
$STD apt-get install -y nodejs |
|
|
|
|
|
|
|
msg_ok "Installed Node.js" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Yarn" |
|
|
|
|
|
|
|
$STD npm install --global yarn |
|
|
|
|
|
|
|
msg_ok "Installed Yarn" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RELEASE=$(curl -s https://api.github.com/repos/NginxProxyManager/nginx-proxy-manager/releases/latest | |
|
|
|
|
|
|
|
grep "tag_name" | |
|
|
|
|
|
|
|
awk '{print substr($2, 3, length($2)-4) }') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Downloading Nginx Proxy Manager v2.9.22" |
|
|
|
|
|
|
|
wget -q https://codeload.github.com/NginxProxyManager/nginx-proxy-manager/tar.gz/v2.9.22 -O - | tar -xz |
|
|
|
|
|
|
|
cd ./nginx-proxy-manager-2.9.22 |
|
|
|
|
|
|
|
msg_ok "Downloaded Nginx Proxy Manager v2.9.22" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Setting up Enviroment" |
|
|
|
|
|
|
|
ln -sf /usr/bin/python3 /usr/bin/python |
|
|
|
|
|
|
|
ln -sf /usr/bin/certbot /opt/certbot/bin/certbot |
|
|
|
|
|
|
|
ln -sf /usr/local/openresty/nginx/sbin/nginx /usr/sbin/nginx |
|
|
|
|
|
|
|
ln -sf /usr/local/openresty/nginx/ /etc/nginx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sed -i "s+0.0.0+2.9.22+g" backend/package.json |
|
|
|
|
|
|
|
sed -i "s+0.0.0+2.9.22+g" frontend/package.json |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sed -i 's+^daemon+#daemon+g' docker/rootfs/etc/nginx/nginx.conf |
|
|
|
|
|
|
|
NGINX_CONFS=$(find "$(pwd)" -type f -name "*.conf") |
|
|
|
|
|
|
|
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 |
|
|
|
function default_settings() { |
|
|
|
cp -r docker/rootfs/var/www/html/* /var/www/html/ |
|
|
|
CT_TYPE="1" |
|
|
|
cp -r docker/rootfs/etc/nginx/* /etc/nginx/ |
|
|
|
PW="" |
|
|
|
cp docker/rootfs/etc/letsencrypt.ini /etc/letsencrypt.ini |
|
|
|
CT_ID=$NEXTID |
|
|
|
cp docker/rootfs/etc/logrotate.d/nginx-proxy-manager /etc/logrotate.d/nginx-proxy-manager |
|
|
|
HN=$NSAPP |
|
|
|
ln -sf /etc/nginx/nginx.conf /etc/nginx/conf/nginx.conf |
|
|
|
DISK_SIZE="$var_disk" |
|
|
|
rm -f /etc/nginx/conf.d/dev.conf |
|
|
|
CORE_COUNT="$var_cpu" |
|
|
|
|
|
|
|
RAM_SIZE="$var_ram" |
|
|
|
mkdir -p /tmp/nginx/body \ |
|
|
|
BRG="vmbr0" |
|
|
|
/run/nginx \ |
|
|
|
NET=dhcp |
|
|
|
/data/nginx \ |
|
|
|
GATE="" |
|
|
|
/data/custom_ssl \ |
|
|
|
DISABLEIP6="no" |
|
|
|
/data/logs \ |
|
|
|
MTU="" |
|
|
|
/data/access \ |
|
|
|
SD="" |
|
|
|
/data/nginx/default_host \ |
|
|
|
NS="" |
|
|
|
/data/nginx/default_www \ |
|
|
|
MAC="" |
|
|
|
/data/nginx/proxy_host \ |
|
|
|
VLAN="" |
|
|
|
/data/nginx/redirection_host \ |
|
|
|
SSH="no" |
|
|
|
/data/nginx/stream \ |
|
|
|
VERB="no" |
|
|
|
/data/nginx/dead_host \ |
|
|
|
echo_default |
|
|
|
/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 |
|
|
|
|
|
|
|
echo -en "${GN} Generating dummy SSL Certificate... " |
|
|
|
|
|
|
|
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 &>/dev/null |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mkdir -p /app/global /app/frontend/images |
|
|
|
|
|
|
|
cp -r backend/* /app |
|
|
|
|
|
|
|
cp -r global/* /app/global |
|
|
|
|
|
|
|
msg_ok "Set up Enviroment" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Building Frontend" |
|
|
|
|
|
|
|
cd ./frontend |
|
|
|
|
|
|
|
export NODE_ENV=development |
|
|
|
|
|
|
|
$STD yarn install --network-timeout=30000 |
|
|
|
|
|
|
|
$STD yarn build |
|
|
|
|
|
|
|
cp -r dist/* /app/frontend |
|
|
|
|
|
|
|
cp -r app-images/* /app/frontend/images |
|
|
|
|
|
|
|
msg_ok "Built Frontend" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Initializing Backend" |
|
|
|
function update_script() { |
|
|
|
rm -rf /app/config/default.json |
|
|
|
header_info |
|
|
|
if [ ! -f /app/config/production.json ]; then |
|
|
|
if [[ ! -f /lib/systemd/system/npm.service ]]; then |
|
|
|
cat <<'EOF' >/app/config/production.json |
|
|
|
msg_error "No ${APP} Installation Found!" |
|
|
|
|
|
|
|
exit |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
RELEASE=$(curl -s https://api.github.com/repos/NginxProxyManager/nginx-proxy-manager/releases/latest | |
|
|
|
|
|
|
|
grep "tag_name" | |
|
|
|
|
|
|
|
awk '{print substr($2, 3, length($2)-4) }') |
|
|
|
|
|
|
|
msg_info "Stopping Services" |
|
|
|
|
|
|
|
systemctl stop openresty |
|
|
|
|
|
|
|
systemctl stop npm |
|
|
|
|
|
|
|
msg_ok "Stopped Services" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Cleaning Old Files" |
|
|
|
|
|
|
|
rm -rf /app \ |
|
|
|
|
|
|
|
/var/www/html \ |
|
|
|
|
|
|
|
/etc/nginx \ |
|
|
|
|
|
|
|
/var/log/nginx \ |
|
|
|
|
|
|
|
/var/lib/nginx \ |
|
|
|
|
|
|
|
/var/cache/nginx &>/dev/null |
|
|
|
|
|
|
|
msg_ok "Cleaned Old Files" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Downloading NPM v2.9.22" |
|
|
|
|
|
|
|
wget -q https://codeload.github.com/NginxProxyManager/nginx-proxy-manager/tar.gz/v2.9.22 -O - | tar -xz &>/dev/null |
|
|
|
|
|
|
|
cd nginx-proxy-manager-2.9.22 |
|
|
|
|
|
|
|
msg_ok "Downloaded NPM v2.9.22" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Setting up Enviroment" |
|
|
|
|
|
|
|
ln -sf /usr/bin/python3 /usr/bin/python |
|
|
|
|
|
|
|
ln -sf /usr/bin/certbot /opt/certbot/bin/certbot |
|
|
|
|
|
|
|
ln -sf /usr/local/openresty/nginx/sbin/nginx /usr/sbin/nginx |
|
|
|
|
|
|
|
ln -sf /usr/local/openresty/nginx/ /etc/nginx |
|
|
|
|
|
|
|
sed -i "s+0.0.0+2.9.22+g" backend/package.json |
|
|
|
|
|
|
|
sed -i "s+0.0.0+2.9.22+g" frontend/package.json |
|
|
|
|
|
|
|
sed -i 's+^daemon+#daemon+g' docker/rootfs/etc/nginx/nginx.conf |
|
|
|
|
|
|
|
NGINX_CONFS=$(find "$(pwd)" -type f -name "*.conf") |
|
|
|
|
|
|
|
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 |
|
|
|
|
|
|
|
cp -r docker/rootfs/var/www/html/* /var/www/html/ |
|
|
|
|
|
|
|
cp -r docker/rootfs/etc/nginx/* /etc/nginx/ |
|
|
|
|
|
|
|
cp docker/rootfs/etc/letsencrypt.ini /etc/letsencrypt.ini |
|
|
|
|
|
|
|
cp docker/rootfs/etc/logrotate.d/nginx-proxy-manager /etc/logrotate.d/nginx-proxy-manager |
|
|
|
|
|
|
|
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 |
|
|
|
|
|
|
|
echo -e "${CHECKMARK} \e[1;92m Generating dummy SSL Certificate... \e[0m" |
|
|
|
|
|
|
|
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 &>/dev/null |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
mkdir -p /app/global /app/frontend/images |
|
|
|
|
|
|
|
cp -r backend/* /app |
|
|
|
|
|
|
|
cp -r global/* /app/global |
|
|
|
|
|
|
|
msg_ok "Setup Enviroment" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Building Frontend" |
|
|
|
|
|
|
|
cd ./frontend |
|
|
|
|
|
|
|
export NODE_ENV=development |
|
|
|
|
|
|
|
yarn install --network-timeout=30000 &>/dev/null |
|
|
|
|
|
|
|
yarn build &>/dev/null |
|
|
|
|
|
|
|
cp -r dist/* /app/frontend |
|
|
|
|
|
|
|
cp -r app-images/* /app/frontend/images |
|
|
|
|
|
|
|
msg_ok "Built Frontend" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Initializing Backend" |
|
|
|
|
|
|
|
rm -rf /app/config/default.json &>/dev/null |
|
|
|
|
|
|
|
if [ ! -f /app/config/production.json ]; then |
|
|
|
|
|
|
|
cat <<'EOF' >/app/config/production.json |
|
|
|
{ |
|
|
|
{ |
|
|
|
"database": { |
|
|
|
"database": { |
|
|
|
"engine": "knex-native", |
|
|
|
"engine": "knex-native", |
|
|
@ -151,42 +151,30 @@ if [ ! -f /app/config/production.json ]; then |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
EOF |
|
|
|
EOF |
|
|
|
fi |
|
|
|
fi |
|
|
|
cd /app |
|
|
|
cd /app |
|
|
|
export NODE_ENV=development |
|
|
|
export NODE_ENV=development |
|
|
|
$STD yarn install --network-timeout=30000 |
|
|
|
yarn install --network-timeout=30000 &>/dev/null |
|
|
|
msg_ok "Initialized Backend" |
|
|
|
msg_ok "Initialized Backend" |
|
|
|
|
|
|
|
|
|
|
|
msg_info "Creating Service" |
|
|
|
msg_info "Starting Services" |
|
|
|
cat <<'EOF' >/lib/systemd/system/npm.service |
|
|
|
systemctl enable npm &>/dev/null |
|
|
|
[Unit] |
|
|
|
systemctl start openresty |
|
|
|
Description=Nginx Proxy Manager |
|
|
|
systemctl start npm |
|
|
|
After=network.target |
|
|
|
msg_ok "Started Services" |
|
|
|
Wants=openresty.service |
|
|
|
|
|
|
|
|
|
|
|
msg_info "Cleaning up" |
|
|
|
[Service] |
|
|
|
rm -rf ~/nginx-proxy-manager-* |
|
|
|
Type=simple |
|
|
|
msg_ok "Cleaned" |
|
|
|
Environment=NODE_ENV=production |
|
|
|
|
|
|
|
ExecStartPre=-mkdir -p /tmp/nginx/body /data/letsencrypt-acme-challenge |
|
|
|
msg_ok "Update Successfull" |
|
|
|
ExecStart=/usr/bin/node index.js --abort_on_uncaught_exception --max_old_space_size=250 |
|
|
|
exit |
|
|
|
WorkingDirectory=/app |
|
|
|
} |
|
|
|
Restart=on-failure |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Install] |
|
|
|
|
|
|
|
WantedBy=multi-user.target |
|
|
|
|
|
|
|
EOF |
|
|
|
|
|
|
|
msg_ok "Created Service" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
motd_ssh |
|
|
|
|
|
|
|
root |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Starting Services" |
|
|
|
start |
|
|
|
$STD systemctl enable --now openresty |
|
|
|
build_container |
|
|
|
$STD systemctl enable --now npm |
|
|
|
description |
|
|
|
msg_ok "Started Services" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Cleaning up" |
|
|
|
msg_ok "Completed Successfully!\n" |
|
|
|
rm -rf ../nginx-proxy-manager-* |
|
|
|
echo -e "${APP} should be reachable by going to the following URL. |
|
|
|
$STD apt-get autoremove |
|
|
|
${BL}http://${IP}:81${CL} \n" |
|
|
|
$STD apt-get autoclean |
|
|
|
|
|
|
|
msg_ok "Cleaned" |
|
|
|
|
|
|
|