Skip to content

Commit 6084e37

Browse files
authored
Merge pull request #16 from linuxserver/http2-readme
Update default conf with new http2 directive
2 parents 2536662 + b32236a commit 6084e37

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
292292

293293
## Versions
294294

295+
* **27.05.24:** - Existing users should update: site-confs/default.conf to avoid http2 deprecation warnings.
295296
* **24.05.24:** - Rebase to Alpine 3.20.
296297
* **16.04.24:** - Rebase to Alpine 3.19, upgrade to php 8.3.
297298
* **10.02.24:** - Initial Release.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ app_setup_block: |
4444
4545
# changelog
4646
changelogs:
47+
- { date: "27.05.24:", desc: "Existing users should update their nginx confs to avoid http2 deprecation warnings." }
4748
- { date: "24.05.24:", desc: "Rebase to Alpine 3.20." }
4849
- { date: "16.04.24:", desc: "Rebase to Alpine 3.19, upgrade to php 8.3." }
4950
- { date: "10.02.24:", desc: "Initial Release." }

root/defaults/nginx/site-confs/default.conf.sample

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
## Version 2023/04/13 - Changelog: https://github.com/linuxserver/docker-speedtest-tracker/commits/master/root/defaults/nginx/site-confs/default.conf.sample
1+
## Version 2024/05/28 - Changelog: https://github.com/linuxserver/docker-speedtest-tracker/commits/master/root/defaults/nginx/site-confs/default.conf.sample
22

33
server {
4-
listen 80 default_server;
5-
listen [::]:80 default_server;
6-
7-
listen 443 ssl http2 default_server;
8-
listen [::]:443 ssl http2 default_server;
4+
listen *:80 default_server;
5+
listen *:443 ssl default_server;
96

107
server_name _;
118

@@ -33,4 +30,4 @@ server {
3330
location ~ /\.ht {
3431
deny all;
3532
}
36-
}
33+
}

0 commit comments

Comments
 (0)