File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- ## Version 2023/04/13 - Changelog: https://github.com/linuxserver/docker-baseimage-alpine-nginx/commits/master/root/defaults/nginx/nginx.conf.sample
1+ ## Version 2024/05/27 - Changelog: https://github.com/linuxserver/docker-baseimage-alpine-nginx/commits/master/root/defaults/nginx/nginx.conf.sample
22
33### Based on alpine defaults
4- # https://git.alpinelinux.org/aports/tree/main/nginx/nginx.conf?h=3.19 -stable
4+ # https://git.alpinelinux.org/aports/tree/main/nginx/nginx.conf?h=3.20 -stable
55
66user abc;
77
6969 '' close;
7070 }
7171
72+ # Enable http2 by default for all servers
73+ http2 on;
74+
7275 # Sets the path, format, and configuration for a buffered log write.
7376 access_log /config/log/nginx/access.log;
7477
Original file line number Diff line number Diff line change 1- ## Version 2024/03/06 - Changelog: https://github.com/linuxserver/docker-baseimage-alpine-nginx/commits/master/root/defaults/nginx/site-confs/default.conf.sample
1+ ## Version 2024/05/27 - Changelog: https://github.com/linuxserver/docker-baseimage-alpine-nginx/commits/master/root/defaults/nginx/site-confs/default.conf.sample
22
33server {
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
You can’t perform that action at this time.
0 commit comments