You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.1 KiB
51 lines
2.1 KiB
---
|
|
|
|
# The version to deploy
|
|
paperless_version: 1.5.0
|
|
# URL of the paperless archive
|
|
paperless_archive_url: https://github.com/jonaswinkler/paperless-ng/releases/download/ng-{{ paperless_version }}/paperless-ng-{{ paperless_version }}.tar.xz
|
|
# Expected checksum
|
|
paperless_archive_sha1: edbbbfde6718ee7586acf1212d32ca379058cb15
|
|
# Should ansible handle install and upgrades, or only initial install
|
|
paperless_manage_upgrade: True
|
|
# Root directory where paperless will be installed
|
|
paperless_root_dir: /opt/paperless
|
|
# Paperless will monitor this dir and import files from here
|
|
paperless_consume_dir: "{{ paperless_root_dir }}/consume"
|
|
|
|
# The user under which paperless will run
|
|
paperless_user: paperless
|
|
|
|
# Port used by paperless web interface
|
|
# You should put it behind a reverse proxy
|
|
paperless_port: 8027
|
|
# List of IP/CIDR having access to {{ paperless_port }}
|
|
paperless_src_ip: []
|
|
|
|
# PostgreSQL database settings
|
|
paperless_db_server: "{{ pg_server | default('localhost') }}"
|
|
paperless_db_port: 5432
|
|
paperless_db_name: paperless
|
|
paperless_db_user: paperless
|
|
# If the password is not defined, a random one will be generated and stored in {{ papermerge_root_dir }}/meta/ansible_dbpass
|
|
# paperless_db_pass: S3cr3t.
|
|
|
|
# Redis URL
|
|
paperless_redis_url: redis://localhost:6379
|
|
|
|
# Secret key to create session token. If not defined, a random one will be generated and stored in {{ papermerge_root_dir }}/meta/ansible_secret_key
|
|
# paperless_secret_key: SecretKey
|
|
|
|
# Public URL where paperless will be available
|
|
paperless_public_url: http://{{ inventory_hostname }}
|
|
|
|
# Language for the OCR process. Should be a 3 letter code for tesseract.
|
|
# You can use several languages like fra+eng (but it will consume more CPU power)
|
|
paperless_ocr_lang: fra
|
|
|
|
# Password for the initial admin account. If not defined, a random one will be generated and stored in {{ papermerge_root_dir }}/meta/ansible_admin_pass
|
|
# paperless_admin_pass: p@ssW0rd
|
|
|
|
# If set, paperless will look for a username sent in the provided HTTP header
|
|
# If a user is found, it'll be automatically authenticated
|
|
# paperless_auth_header: HTTP_REMOTE_USER
|
|
|