nginx-proxy-manager/backend/templates
bergi9 f022e84979
Add SSL and HTTP2 into IPv6 on listen.conf
I can only server contents with IPv6 because I'm sitting behind CGN on IPv4. When enabling HTTP2 it still not serve contents with HTTP2 as there are missing arguments in the `listen`. But it still does the SSL encryption.
Previous to this commit it generates:
```
listen 80;
listen [::]:80;

listen 443 ssl http2;
listen [::]:443;
```
Now it generates:
```
listen 80;
listen [::]:80;

listen 443 ssl http2;
listen [::]:443 ssl http2;
```
2021-09-07 22:50:49 +02:00
..
_assets.conf v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
_certificates.conf v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
_exploits.conf v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
_forced_ssl.conf v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
_header_comment.conf v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
_hsts.conf Update _hsts.conf template 2021-03-13 12:40:47 +00:00
_listen.conf Add SSL and HTTP2 into IPv6 on listen.conf 2021-09-07 22:50:49 +02:00
_location.conf Utilise variable for custom locations proxy_pass 2021-07-23 16:24:46 +10:00
dead_host.conf All logs in single folder 2021-06-29 23:07:54 +02:00
default.conf Fixes renewal unused http certificates 2021-08-04 14:07:53 +02:00
ip_ranges.conf v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
letsencrypt-request.conf All logs in single folder 2021-06-29 23:07:54 +02:00
proxy_host.conf All logs in single folder 2021-06-29 23:07:54 +02:00
redirection_host.conf All logs in single folder 2021-06-29 23:07:54 +02:00
stream.conf allows hostname instead of ip for streams 2021-04-24 01:09:01 +02:00