mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			183 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			183 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
 | 
						|
# Copyright (c) 2021-2023 tteck
 | 
						|
# Author: tteck (tteckster)
 | 
						|
# License: MIT
 | 
						|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
 | 
						|
 | 
						|
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
 | 
						|
catch_errors
 | 
						|
 | 
						|
function default_settings() {
 | 
						|
  CT_TYPE="1"
 | 
						|
  PW=""
 | 
						|
  CT_ID=$NEXTID
 | 
						|
  HN=$NSAPP
 | 
						|
  DISK_SIZE="$var_disk"
 | 
						|
  CORE_COUNT="$var_cpu"
 | 
						|
  RAM_SIZE="$var_ram"
 | 
						|
  BRG="vmbr0"
 | 
						|
  NET=dhcp
 | 
						|
  GATE=""
 | 
						|
  DISABLEIP6="no"
 | 
						|
  MTU=""
 | 
						|
  SD=""
 | 
						|
  NS=""
 | 
						|
  MAC=""
 | 
						|
  VLAN=""
 | 
						|
  SSH="no"
 | 
						|
  VERB="no"
 | 
						|
  echo_default
 | 
						|
}
 | 
						|
 | 
						|
function update_script() {
 | 
						|
  header_info
 | 
						|
  if [[ ! -f /lib/systemd/system/npm.service ]]; then
 | 
						|
    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 v${RELEASE}"
 | 
						|
  wget -q https://codeload.github.com/NginxProxyManager/nginx-proxy-manager/tar.gz/v${RELEASE} -O - | tar -xz &>/dev/null
 | 
						|
  cd nginx-proxy-manager-${RELEASE}
 | 
						|
  msg_ok "Downloaded NPM v${RELEASE}"
 | 
						|
 | 
						|
  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+${RELEASE}+g" backend/package.json
 | 
						|
  sed -i "s+0.0.0+${RELEASE}+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
 | 
						|
  python3 -m pip install --no-cache-dir certbot-dns-cloudflare &>/dev/null
 | 
						|
  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": {
 | 
						|
    "engine": "knex-native",
 | 
						|
    "knex": {
 | 
						|
      "client": "sqlite3",
 | 
						|
      "connection": {
 | 
						|
        "filename": "/data/database.sqlite"
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
EOF
 | 
						|
  fi
 | 
						|
  cd /app
 | 
						|
  export NODE_ENV=development
 | 
						|
  yarn install --network-timeout=30000 &>/dev/null
 | 
						|
  msg_ok "Initialized Backend"
 | 
						|
 | 
						|
  msg_info "Starting Services"
 | 
						|
  sed -i -e 's/^pid/#pid/' -e 's/^user/#user/' /usr/local/openresty/nginx/conf/nginx.conf
 | 
						|
  systemctl enable npm &>/dev/null
 | 
						|
  systemctl start openresty
 | 
						|
  systemctl start npm
 | 
						|
  msg_ok "Started Services"
 | 
						|
 | 
						|
  msg_info "Cleaning up"
 | 
						|
  rm -rf ~/nginx-proxy-manager-*
 | 
						|
  msg_ok "Cleaned"
 | 
						|
 | 
						|
  msg_ok "Update Successfull"
 | 
						|
  exit
 | 
						|
}
 | 
						|
 | 
						|
start
 | 
						|
build_container
 | 
						|
description
 | 
						|
 | 
						|
msg_ok "Completed Successfully!\n"
 | 
						|
echo -e "${APP} should be reachable by going to the following URL.
 | 
						|
         ${BL}http://${IP}:81${CL} \n"
 |