nginx-proxy-manager/backend
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
..
.vscode Version 2.1.2 (#317) 2020-03-06 11:04:42 +10:00
config Revert "updated debug statement" 2021-09-01 11:47:47 +05:30
doc v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
internal updated debug statement 2021-09-01 11:50:51 +05:30
lib Support ipv6 address as a origin header, hopefully fixes #149 2020-04-14 13:01:13 +10:00
migrations Incorporate feedback 2021-08-13 11:32:01 +02:00
models Removed the need to restart Nginx Proxy Manager after generating JWT key pair. 2021-02-08 17:36:58 -05:00
routes/api thrown exception for non LE certificates 2021-08-24 06:01:08 +05:30
schema Forwarding host should be anyOf not oneOf 2021-08-31 19:27:43 +02:00
templates Add SSL and HTTP2 into IPv6 on listen.conf 2021-09-07 22:50:49 +02:00
.eslintrc.json v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
.gitignore - Add ability to disable ipv6, fixes #312 2020-04-07 10:43:19 +10:00
.prettierrc v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
app.js Adds error stack information in prod environment for certificates 2020-10-08 15:30:13 +02:00
db.js sqlite3 and psql support 2020-07-19 20:04:29 +02:00
index.js Revert "updated debug statement" 2021-09-01 11:47:47 +05:30
knexfile.js v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
logger.js v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
migrate.js v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
nodemon.json v2.1.0 (#293) 2020-02-19 15:55:06 +11:00
package.json added endpoint to download certificates 2021-08-23 09:03:24 +05:30
setup.js Revert "updated debug statement" 2021-09-01 11:47:47 +05:30
yarn.lock Bump tar from 4.4.15 to 4.4.19 in /backend 2021-09-02 00:11:00 +00:00