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
..
2020-03-06 11:04:42 +10:00
2021-09-01 11:47:47 +05:30
2020-02-19 15:55:06 +11:00
2021-09-01 11:50:51 +05:30
2021-08-13 11:32:01 +02:00
2020-02-19 15:55:06 +11:00
2020-02-19 15:55:06 +11:00
2020-07-19 20:04:29 +02:00
2021-09-01 11:47:47 +05:30
2020-02-19 15:55:06 +11:00
2020-02-19 15:55:06 +11:00
2020-02-19 15:55:06 +11:00
2020-02-19 15:55:06 +11:00
2021-09-01 11:47:47 +05:30