File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ log "Patching Nginx Proxy Manager backend..."
77
77
patch -p1 -d /tmp/nginx-proxy-manager < " $SCRIPT_DIR " /pip-install.patch
78
78
patch -p1 -d /tmp/nginx-proxy-manager < " $SCRIPT_DIR " /remove-certbot-dns-oci.patch
79
79
patch -p1 -d /tmp/nginx-proxy-manager < " $SCRIPT_DIR " /powerdns-fix.patch
80
+ patch -p1 -d /tmp/nginx-proxy-manager < " $SCRIPT_DIR " /http2-support-fix.conf
80
81
81
82
cp -r /tmp/nginx-proxy-manager /app
82
83
Original file line number Diff line number Diff line change
1
+ --- nginx-proxy-manager-2.10.4/backend/templates/_listen.conf.orig 2023-12-09 10:51:50.551616517 -0500
2
+ +++ nginx-proxy-manager-2.10.4/backend/templates/_listen.conf 2023-12-09 10:52:16.259672036 -0500
3
+ @@ -5,9 +5,9 @@
4
+ #listen [::]:80;
5
+ {% endif %}
6
+ {% if certificate -%}
7
+ - listen 443 ssl{% if http2_support %} http2{% endif %};
8
+ + listen 443 ssl{% if http2_support == 1 or http2_support == true %} http2{% endif %};
9
+ {% if ipv6 -%}
10
+ - listen [::]:443 ssl{% if http2_support %} http2{% endif %};
11
+ + listen [::]:443 ssl{% if http2_support == 1 or http2_support == true %} http2{% endif %};
12
+ {% else -%}
13
+ #listen [::]:443;
14
+ {% endif %}
You can’t perform that action at this time.
0 commit comments