You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
YAML
55 lines
1.8 KiB
YAML
---
|
|
# photoprism configuration
|
|
photoprism_image: photoprism/photoprism
|
|
photoprism_tag: 230615
|
|
photoprism_container_name: photoprism
|
|
photoprism_restart_policy: unless-stopped
|
|
|
|
# ports
|
|
photoprism_http_port: 2342
|
|
|
|
# environment variables
|
|
photoprism_admin_password: "{{ vault_photoprism_admin_password | default('changeme') }}"
|
|
photoprism_auth_mode: "password"
|
|
photoprism_site_url: "http://{{ ansible_default_ipv4.address }}:{{ photoprism_http_port }}"
|
|
photoprism_originals_limit: 5000
|
|
photoprism_http_compression: "gzip"
|
|
photoprism_log_level: "info"
|
|
photoprism_readonly: "false"
|
|
photoprism_experimental: "false"
|
|
photoprism_disable_chown: "false"
|
|
photoprism_disable_webdav: "false"
|
|
photoprism_disable_settings: "false"
|
|
photoprism_disable_tensorflow: "false"
|
|
photoprism_disable_faces: "false"
|
|
photoprism_disable_classification: "false"
|
|
photoprism_disable_raw: "false"
|
|
photoprism_raw_presets: "false"
|
|
photoprism_jpeg_quality: 85
|
|
photoprism_detect_nsfw: "false"
|
|
photoprism_upload_nsfw: "true"
|
|
photoprism_site_caption: "AI-Powered Photos App"
|
|
photoprism_site_description: ""
|
|
photoprism_site_author: ""
|
|
|
|
# database configuration
|
|
photoprism_database_driver: "mysql"
|
|
photoprism_database_server: "10.4.5.201:3306"
|
|
photoprism_database_name: "photoprism"
|
|
photoprism_database_user: "photoprism"
|
|
photoprism_database_password: "{{ vault_photoprism_database_password | default('changeme') }}"
|
|
|
|
# directories
|
|
photoprism_base_dir: /mnt/mergerfs/photoprism
|
|
photoprism_originals_dir: "{{ photoprism_base_dir }}/originals"
|
|
photoprism_import_dir: "{{ photoprism_base_dir }}/import"
|
|
photoprism_storage_dir: "{{ photoprism_base_dir }}/storage"
|
|
|
|
# network configuration
|
|
photoprism_network: mariadb_net
|
|
|
|
# hardware acceleration
|
|
photoprism_enable_hw_acceleration: true
|
|
|
|
# portainer configuration
|
|
photoprism_stack_name: photoprism |