Merge pull request #16 from linuxserver/http2-readme

Update default conf with new http2 directive
This commit is contained in:
Adam 2024-05-29 14:49:35 +01:00 committed by GitHub
commit 6084e37b1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 7 deletions

View File

@ -292,6 +292,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **27.05.24:** - Existing users should update: site-confs/default.conf to avoid http2 deprecation warnings.
* **24.05.24:** - Rebase to Alpine 3.20.
* **16.04.24:** - Rebase to Alpine 3.19, upgrade to php 8.3.
* **10.02.24:** - Initial Release.

View File

@ -44,6 +44,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "27.05.24:", desc: "Existing users should update their nginx confs to avoid http2 deprecation warnings." }
- { date: "24.05.24:", desc: "Rebase to Alpine 3.20." }
- { date: "16.04.24:", desc: "Rebase to Alpine 3.19, upgrade to php 8.3." }
- { date: "10.02.24:", desc: "Initial Release." }

View File

@ -1,11 +1,8 @@
## Version 2023/04/13 - Changelog: https://github.com/linuxserver/docker-speedtest-tracker/commits/master/root/defaults/nginx/site-confs/default.conf.sample
## Version 2024/05/28 - Changelog: https://github.com/linuxserver/docker-speedtest-tracker/commits/master/root/defaults/nginx/site-confs/default.conf.sample
server {
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
listen *:80 default_server;
listen *:443 ssl default_server;
server_name _;
@ -33,4 +30,4 @@ server {
location ~ /\.ht {
deny all;
}
}
}