File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed
root/defaults/nginx/site-confs Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
3
- FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.19
3
+ FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.20
4
4
5
5
# set version label
6
6
ARG BUILD_DATE
45
45
/app/www/ --strip-components=1 && \
46
46
echo "**** install composer dependencies ****" && \
47
47
composer install -d /app/www/ && \
48
+ printf "Linuxserver.io version: ${VERSION}\n Build-date: ${BUILD_DATE}" > /build_version && \
48
49
echo "**** cleanup ****" && \
49
50
rm -rf \
50
51
/tmp/* \
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
3
- FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.19
3
+ FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.20
4
4
5
5
# set version label
6
6
ARG BUILD_DATE
45
45
/app/www/ --strip-components=1 && \
46
46
echo "**** install composer dependencies ****" && \
47
47
composer install -d /app/www/ && \
48
+ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
48
49
echo "**** cleanup ****" && \
49
50
rm -rf \
50
51
/tmp/* \
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ pipeline {
35
35
CI_SSL = ' false'
36
36
CI_DELAY = ' 30'
37
37
CI_DOCKERENV = ' TEST_RUN=1'
38
- CI_AUTH = ' user:password '
38
+ CI_AUTH = ' '
39
39
CI_WEBPATH = ' '
40
40
}
41
41
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
337
337
338
338
# # Versions
339
339
340
+ * ** 27.05.24:** - Rebase to Alpine 3.20. Existing users should update: site-confs/default.conf to avoid http2 deprecation warnings.
340
341
* ** 25.01.24:** - Existing users should update: site-confs/default.conf - Cleanup default site conf.
341
342
* ** 23.12.23:** - Rebase to Alpine 3.19 with php 8.3.
342
343
* ** 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
6
6
release_type : stable
7
7
release_tag : latest
8
8
ls_branch : master
9
- build_armhf : false
10
9
repo_vars :
11
10
- EXT_GIT_BRANCH = 'master'
12
11
- EXT_USER = 'bookstackapp'
@@ -26,5 +25,5 @@ repo_vars:
26
25
- CI_SSL = 'false'
27
26
- CI_DELAY = '30'
28
27
- CI_DOCKERENV='TEST_RUN=1'
29
- - CI_AUTH = 'user:password '
28
+ - CI_AUTH = ''
30
29
- CI_WEBPATH = ''
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ app_setup_block: |
113
113
114
114
# changelog
115
115
changelogs :
116
+ - { date: "27.05.24:", desc: "Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings."}
116
117
- { date: "25.01.24:", desc: "Existing users should update: site-confs/default.conf - Cleanup default site conf." }
117
118
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19 with php 8.3."}
118
119
- { 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
2
2
3
3
server {
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;
9
6
10
7
server_name _;
11
8
You can’t perform that action at this time.
0 commit comments