Update to 2021-07-21 10:00

master
Daniel Berteaud 3 years ago
parent d2291b5b77
commit 461d6c51b0
  1. 3
      roles/bookstack/defaults/main.yml
  2. 2
      roles/bookstack/templates/env.j2
  3. 2
      roles/seafile/defaults/main.yml
  4. BIN
      roles/seafile/files/seafile-pro-server_8.0.7_x86-64_CentOS.tar.gz

@ -59,6 +59,9 @@ bookstack_email_encryption: 'null'
# Default lang
bookstack_default_lang: fr
# Session lifetime, in minutes
bookstack_session_lifetime: 480
# You can set custom directive with this:
# bookstack_settings:
# AUTH_METHOD: saml2

@ -16,7 +16,9 @@ MAIL_PASSWORD={{ bookstack_email_pass | quote }}
MAIL_ENCRYPTION={{ bookstack_email_encryption }}
APP_TIMEZONE={{ system_tz | default('UTC') }}
APP_LANG={{ bookstack_default_lang }}
SESSION_SECURE_COOKIE={{ (bookstack_public_url | urlsplit('scheme') == 'https') | ternary('true','false') }}
SESSION_COOKIE_NAME=bookstack_{{ bookstack_id }}_session
SESSION_LIFETIME={{ bookstack_session_lifetime }}
CACHE_PREFIX=bookstack_{{ bookstack_id }}
{% for key in bookstack_settings.keys() | list %}
{{ key }}="{{ bookstack_settings[key] }}"

@ -11,7 +11,7 @@
# MaxUsers = "9"
# Mode = "subscription"
# etc...
seafile_version: "{{ seafile_license is defined | ternary('8.0.5','8.0.6') }}"
seafile_version: "{{ seafile_license is defined | ternary('8.0.7','8.0.6') }}"
# Archive URL and sha1 are only used for the community version
seafile_archive_url: https://s3.eu-central-1.amazonaws.com/download.seadrive.org/seafile-server_{{ seafile_version }}_x86-64.tar.gz

Binary file not shown.
Loading…
Cancel
Save