mirror of
https://github.com/linuxserver/docker-speedtest-tracker.git
synced 2026-03-23 00:02:23 +08:00
Merge pull request #16 from linuxserver/http2-readme
Update default conf with new http2 directive
This commit is contained in:
commit
6084e37b1e
@ -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.
|
||||
|
||||
@ -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." }
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user