diff --git a/README.md b/README.md
index 36875e809..b53c637bd 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Any applications not in ported or unsupported need to be tested for whether they
AgentDVR
Apache Cassandra
Docker
+ Nginx Proxy Manager
Prowlarr
Radarr
Sonarr
diff --git a/ct/nginxproxymanager.sh b/ct/nginxproxymanager.sh
index a65e8623c..d98955c65 100644
--- a/ct/nginxproxymanager.sh
+++ b/ct/nginxproxymanager.sh
@@ -1,5 +1,5 @@
#!/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
# Author: tteck (tteckster)
# License: MIT
@@ -23,8 +23,8 @@ APP="Nginx Proxy Manager"
var_disk="4"
var_cpu="1"
var_ram="1024"
-var_os="debian"
-var_version="12"
+var_os="ubuntu"
+var_version="22.04"
variables
color
catch_errors
diff --git a/install/nginxproxymanager-install.sh b/install/nginxproxymanager-install.sh
index cf7ca7419..746b8a9a8 100644
--- a/install/nginxproxymanager-install.sh
+++ b/install/nginxproxymanager-install.sh
@@ -27,7 +27,8 @@ $STD apt-get -y install \
apache2-utils \
logrotate \
build-essential \
- git
+ git \
+ wget
msg_ok "Installed Dependencies"
msg_info "Installing Python Dependencies"
@@ -48,7 +49,7 @@ VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
msg_info "Installing Openresty"
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 -y install openresty
msg_ok "Installed Openresty"