Skip to content

Commit

Permalink
Move ssl.conf include to default.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
nemchik committed Apr 13, 2023
1 parent c80cb05 commit 851966e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,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.
* **13.04.23:** - Add php81-pecl-redis for redis support.
* **28.12.22:** - Rebase to Alpine 3.17, migrate to s6v3.
* **20.08.22:** - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)).
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "13.04.23:", desc: "Move ssl.conf include to default.conf." }
- { date: "13.04.23:", desc: "Add php81-pecl-redis for redis support." }
- { date: "28.12.22:", desc: "Rebase to Alpine 3.17, migrate to s6v3." }
- { date: "20.08.22:", desc: "Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base))." }
Expand Down
4 changes: 3 additions & 1 deletion root/defaults/nginx/site-confs/default.conf.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 2022/08/20 - Changelog: https://github.com/linuxserver/docker-snapdrop/commits/master/root/defaults/nginx/site-confs/default.conf.sample
## Version 2023/04/13 - Changelog: https://github.com/linuxserver/docker-snapdrop/commits/master/root/defaults/nginx/site-confs/default.conf.sample

server {
listen 80 default_server;
Expand All @@ -9,6 +9,8 @@ server {

server_name APP_URL_PLACEHOLDER;

include /config/nginx/ssl.conf;

root /app/www/public;
index index.html index.htm index.php;

Expand Down

0 comments on commit 851966e

Please sign in to comment.