Move ssl.conf include to default.conf

This commit is contained in:
Eric Nemchik
2023-04-13 11:05:33 -05:00
parent 97204bf475
commit 7c54fecd42
3 changed files with 5 additions and 1 deletions

View File

@@ -226,6 +226,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **13.04.23:** - Move ssl.conf include to default.conf.
* **02.03.23:** - Split cron into separate init step and set crontab permissions.
* **19.01.23:** - Rebase to alpine 3.17 with php8.1.
* **21.10.22:** - Fix cron init to properly migrate existing installations to new app location.

View File

@@ -52,6 +52,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "13.04.23:", desc: "Move ssl.conf include to default.conf." }
- { date: "02.03.23:", desc: "Split cron into separate init step and set crontab permissions." }
- { date: "19.01.23:", desc: "Rebase to alpine 3.17 with php8.1." }
- { date: "21.10.22:", desc: "Fix cron init to properly migrate existing installations to new app location." }

View File

@@ -1,4 +1,4 @@
## Version 2022/08/20 - Changelog: https://github.com/linuxserver/docker-freshrss/commits/master/root/defaults/nginx/site-confs/default.conf.sample
## Version 2023/04/13 - Changelog: https://github.com/linuxserver/docker-freshrss/commits/master/root/defaults/nginx/site-confs/default.conf.sample
server {
listen 80 default_server;
@@ -9,6 +9,8 @@ server {
server_name _;
include /config/nginx/ssl.conf;
root /app/www/p;
index index.html index.htm index.php;