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.
48 lines
1.9 KiB
48 lines
1.9 KiB
3 years ago
|
---
|
||
|
|
||
|
# The version to deploy
|
||
|
paperless_version: 1.4.5
|
||
|
# 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: 4c989458c59890b9bd1dcd97a18e8bcb68280250
|
||
|
# 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
|