Skip to content

Commit b2b296f

Browse files
committed
Update default conf with new http2 directive
1 parent 2536662 commit b2b296f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
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: site-confs/default.conf 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: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
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 {
44
listen 80 default_server;
55
listen [::]:80 default_server;
66

7-
listen 443 ssl http2 default_server;
8-
listen [::]:443 ssl http2 default_server;
7+
listen 443 ssl default_server;
8+
listen [::]:443 ssl default_server;
9+
10+
http2 on;
911

1012
server_name _;
1113

@@ -33,4 +35,4 @@ server {
3335
location ~ /\.ht {
3436
deny all;
3537
}
36-
}
38+
}

0 commit comments

Comments
 (0)