Skip to content

Commit 04cebcd

Browse files
authored
Merge pull request #169 from linuxserver/move-ssl-include
Move ssl.conf include to default.conf
2 parents 5470eb4 + d97fc18 commit 04cebcd

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
290290

291291
## Versions
292292

293+
* **13.04.23:** - Move ssl.conf include to default.conf.
293294
* **01.03.23:** - Add php iconv.
294295
* **19.01.23:** - Rebase to alpine 3.17 with php8.1.
295296
* **16.01.23:** - Wrap `.env` values in quotes.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ app_setup_block: |
117117
118118
# changelog
119119
changelogs:
120+
- { date: "13.04.23:", desc: "Move ssl.conf include to default.conf." }
120121
- { date: "01.03.23:", desc: "Add php iconv." }
121122
- { date: "19.01.23:", desc: "Rebase to alpine 3.17 with php8.1." }
122123
- { date: "16.01.23:", desc: "Wrap `.env` values in quotes." }

root/defaults/nginx/site-confs/default.conf.sample

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2022/10/04 - Changelog: https://github.com/linuxserver/docker-bookstack/commits/master/root/defaults/nginx/site-confs/default.conf.sample
1+
## Version 2023/04/13 - Changelog: https://github.com/linuxserver/docker-bookstack/commits/master/root/defaults/nginx/site-confs/default.conf.sample
22

33
server {
44
listen 80 default_server;
@@ -9,6 +9,8 @@ server {
99

1010
server_name _;
1111

12+
include /config/nginx/ssl.conf;
13+
1214
root /app/www/public;
1315
index index.html index.htm index.php;
1416

0 commit comments

Comments
 (0)