File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ APP="Nginx Proxy Manager"
9
9
var_tags=" proxy"
10
10
var_cpu=" 2"
11
11
var_ram=" 1024"
12
- var_disk=" 4 "
12
+ var_disk=" 12 "
13
13
var_os=" debian"
14
14
var_version=" 12"
15
15
var_unprivileged=" 1"
@@ -157,4 +157,4 @@ description
157
157
msg_ok " Completed Successfully!\n"
158
158
echo -e " ${CREATING}${GN}${APP} setup has been successfully initialized!${CL} "
159
159
echo -e " ${INFO}${YW} Access it using the following URL:${CL} "
160
- echo -e " ${TAB}${GATEWAY}${BGN} http://${IP} :81${CL} "
160
+ echo -e " ${TAB}${GATEWAY}${BGN} http://${IP} :81${CL} "
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ $STD apt-get install -y \
39
39
python3-venv \
40
40
python3-cffi \
41
41
python3-certbot \
42
- python3-certbot-dns-cloudflare
42
+ python3-certbot-dns-cloudflare \
43
+ golang
43
44
rm -rf /usr/lib/python3.* /EXTERNALLY-MANAGED
44
45
$STD pip3 install certbot-dns-multi==4.15.0
45
46
$STD python3 -m venv /opt/certbot/
@@ -48,8 +49,9 @@ msg_ok "Installed Python Dependencies"
48
49
VERSION=" $( awk -F' =' ' /^VERSION_CODENAME=/{ print $NF }' /etc/os-release) "
49
50
50
51
msg_info " Installing Openresty"
51
- wget -qO - https://openresty.org/package/pubkey.gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/openresty-archive-keyring.gpg
52
- echo -e " deb http://openresty.org/package/debian bullseye openresty" > /etc/apt/sources.list.d/openresty.list
52
+ wget -O - https://openresty.org/package/pubkey.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/openresty.gpg
53
+ codename=` grep -Po ' VERSION="[0-9]+ \(\K[^)]+' /etc/os-release`
54
+ echo " deb http://openresty.org/package/arm64/debian $codename openresty" | sudo tee /etc/apt/sources.list.d/openresty.list
53
55
$STD apt-get update
54
56
$STD apt-get -y install openresty
55
57
msg_ok " Installed Openresty"
You can’t perform that action at this time.
0 commit comments