File tree Expand file tree Collapse file tree 7 files changed +13
-8
lines changed
root/defaults/nginx/site-confs Expand file tree Collapse file tree 7 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1
22
3- FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.19
3+ FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.20
44
55# set version label
66ARG BUILD_DATE
4545 /app/www/ --strip-components=1 && \
4646 echo "**** install composer dependencies ****" && \
4747 composer install -d /app/www/ && \
48+ printf "Linuxserver.io version: ${VERSION}\n Build-date: ${BUILD_DATE}" > /build_version && \
4849 echo "**** cleanup ****" && \
4950 rm -rf \
5051 /tmp/* \
Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1
22
3- FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.19
3+ FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.20
44
55# set version label
66ARG BUILD_DATE
4545 /app/www/ --strip-components=1 && \
4646 echo "**** install composer dependencies ****" && \
4747 composer install -d /app/www/ && \
48+ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
4849 echo "**** cleanup ****" && \
4950 rm -rf \
5051 /tmp/* \
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ pipeline {
3535 CI_SSL = ' false'
3636 CI_DELAY = ' 30'
3737 CI_DOCKERENV = ' TEST_RUN=1'
38- CI_AUTH = ' user:password '
38+ CI_AUTH = ' '
3939 CI_WEBPATH = ' '
4040 }
4141 stages {
Original file line number Diff line number Diff line change @@ -337,6 +337,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
337337
338338# # Versions
339339
340+ * ** 27.05.24:** - Rebase to Alpine 3.20. Existing users should update: site-confs/default.conf to avoid http2 deprecation warnings.
340341* ** 25.01.24:** - Existing users should update: site-confs/default.conf - Cleanup default site conf.
341342* ** 23.12.23:** - Rebase to Alpine 3.19 with php 8.3.
342343* ** 31.10.23:** - Further sanitize sed replace.
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ external_type: github_stable
66release_type : stable
77release_tag : latest
88ls_branch : master
9- build_armhf : false
109repo_vars :
1110 - EXT_GIT_BRANCH = 'master'
1211 - EXT_USER = 'bookstackapp'
@@ -26,5 +25,5 @@ repo_vars:
2625 - CI_SSL = 'false'
2726 - CI_DELAY = '30'
2827 - CI_DOCKERENV='TEST_RUN=1'
29- - CI_AUTH = 'user:password '
28+ - CI_AUTH = ''
3029 - CI_WEBPATH = ''
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ app_setup_block: |
113113
114114# changelog
115115changelogs :
116+ - { date: "27.05.24:", desc: "Rebase to Alpine 3.20. Existing users should update: site-confs/default.conf to avoid http2 deprecation warnings."}
116117 - { date: "25.01.24:", desc: "Existing users should update: site-confs/default.conf - Cleanup default site conf." }
117118 - { date: "23.12.23:", desc: "Rebase to Alpine 3.19 with php 8.3."}
118119 - { date: "31.10.23:", desc: "Further sanitize sed replace." }
Original file line number Diff line number Diff line change 1- ## Version 2023/12/25 - Changelog: https://github.com/linuxserver/docker-bookstack/commits/master/root/defaults/nginx/site-confs/default.conf.sample
1+ ## Version 2024/05/27 - Changelog: https://github.com/linuxserver/docker-bookstack/commits/master/root/defaults/nginx/site-confs/default.conf.sample
22
33server {
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
You can’t perform that action at this time.
0 commit comments