Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 31d240818c | |||
| bb9c401379 | |||
| 2caffffc54 | |||
| 176d6f59aa |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -2,6 +2,20 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [1.1.2](https://git.laurivan.com/Dev/ansible-role-firefly/compare/v1.1.1...v1.1.2) (2023-05-12)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Restart cronjob on reboot. ([bb9c401](https://git.laurivan.com/Dev/ansible-role-firefly/commit/bb9c401379b685bc816fc124652cdd9d2e92a05a))
|
||||
|
||||
### [1.1.1](https://git.laurivan.com/Dev/ansible-role-firefly/compare/v1.1.0...v1.1.1) (2023-04-30)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Fix reverse proxy ([176d6f5](https://git.laurivan.com/Dev/ansible-role-firefly/commit/176d6f59aaec15da8f507bea01ba8dd446ff5c11))
|
||||
|
||||
## 1.1.0 (2023-04-30)
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ version: '3.9'
|
||||
services:
|
||||
app:
|
||||
image: fireflyiii/core:latest
|
||||
restart: always
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- firefly_iii_upload:/var/www/html/storage/upload
|
||||
env_file: env.firefly.conf
|
||||
@@ -16,7 +16,7 @@ services:
|
||||
db:
|
||||
image: mariadb
|
||||
hostname: fireflyiiidb
|
||||
restart: always
|
||||
restart: unless-stopped
|
||||
env_file: env.db.conf
|
||||
networks:
|
||||
- firefly_iii
|
||||
@@ -29,6 +29,7 @@ services:
|
||||
# The STATIC_CRON_TOKEN must be *exactly* 32 characters long
|
||||
#
|
||||
image: alpine
|
||||
restart: unless-stopped
|
||||
command: sh -c "echo \"0 3 * * * wget -qO- http://app:8080/api/v1/cron/{{ firefly_static_cron_token }}\" | crontab - && crond -f -L /dev/stdout"
|
||||
networks:
|
||||
- firefly_iii
|
||||
|
||||
@@ -35,7 +35,7 @@ TZ=Europe/Amsterdam
|
||||
|
||||
# TRUSTED_PROXIES is a useful variable when using Docker and/or a reverse proxy.
|
||||
# Set it to ** and reverse proxies work just fine.
|
||||
TRUSTED_PROXIES=
|
||||
TRUSTED_PROXIES=**
|
||||
|
||||
# The log channel defines where your log entries go to.
|
||||
# Several other options exist. You can use 'single' for one big fat error log (not recommended).
|
||||
|
||||
Reference in New Issue
Block a user