Port Nginx Proxy Manager to ARM64

This commit is contained in:
Sam Heinz
2024-04-08 17:55:08 +10:00
parent 760480c676
commit 7dd657d53d
3 changed files with 7 additions and 5 deletions
+1
View File
@@ -32,6 +32,7 @@ Any applications not in ported or unsupported need to be tested for whether they
<li>AgentDVR</li> <li>AgentDVR</li>
<li>Apache Cassandra</li> <li>Apache Cassandra</li>
<li>Docker</li> <li>Docker</li>
<li>Nginx Proxy Manager</li>
<li>Prowlarr</li> <li>Prowlarr</li>
<li>Radarr</li> <li>Radarr</li>
<li>Sonarr</li> <li>Sonarr</li>
+3 -3
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# Copyright (c) 2021-2024 tteck # Copyright (c) 2021-2024 tteck
# Author: tteck (tteckster) # Author: tteck (tteckster)
# License: MIT # License: MIT
@@ -23,8 +23,8 @@ APP="Nginx Proxy Manager"
var_disk="4" var_disk="4"
var_cpu="1" var_cpu="1"
var_ram="1024" var_ram="1024"
var_os="debian" var_os="ubuntu"
var_version="12" var_version="22.04"
variables variables
color color
catch_errors catch_errors
+3 -2
View File
@@ -27,7 +27,8 @@ $STD apt-get -y install \
apache2-utils \ apache2-utils \
logrotate \ logrotate \
build-essential \ build-essential \
git git \
wget
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Python Dependencies" msg_info "Installing Python Dependencies"
@@ -48,7 +49,7 @@ VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
msg_info "Installing Openresty" msg_info "Installing Openresty"
wget -qO - https://openresty.org/package/pubkey.gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/openresty-archive-keyring.gpg wget -qO - https://openresty.org/package/pubkey.gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/openresty-archive-keyring.gpg
echo -e "deb http://openresty.org/package/debian bullseye openresty" >/etc/apt/sources.list.d/openresty.list echo -e "deb http://openresty.org/package/ubuntu jammy openresty" >/etc/apt/sources.list.d/openresty.list
$STD apt-get update $STD apt-get update
$STD apt-get -y install openresty $STD apt-get -y install openresty
msg_ok "Installed Openresty" msg_ok "Installed Openresty"