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.
45 lines
1.5 KiB
45 lines
1.5 KiB
---
|
|
|
|
# Version to deploy
|
|
appsmith_version: 1.3.5.1
|
|
# URL of the source archive
|
|
appsmith_archive_url: https://github.com/appsmithorg/appsmith/archive/v{{ appsmith_version }}.tar.gz
|
|
# sha1sum of the archive
|
|
appsmith_archive_sha1: a726767f37cbe6ddcbc95d4857cb1861a6d6b9ab
|
|
|
|
# Root directory where appsmith will be installed
|
|
appsmith_root_dir: /opt/appsmith
|
|
# Should ansible handle upgrades (True) or only initial install (False)
|
|
appsmith_manage_upgrade: True
|
|
|
|
# User account under which appsmith will run
|
|
appsmith_user: appsmith
|
|
|
|
# appsmith needs a redis server and a mongodb one
|
|
appsmith_redis_url: redis://localhost:6379
|
|
appsmith_mongo_url: mongodb://localhost/appsmith?retryWrites=true
|
|
|
|
# appsmith server component
|
|
appsmith_server_port: 8088
|
|
# List of IP/CIDR having access to appsmith_server_port
|
|
appsmith_server_src_ip: []
|
|
|
|
# Email settings
|
|
appsmith_email_from: noreply@{{ ansible_domain }}
|
|
appsmith_email_server: localhost
|
|
appsmith_email_port: 25
|
|
appsmith_email_tls: "{{ (appsmith_email_port == 587) | ternary(True,False) }}"
|
|
# appsmith_email_user: account
|
|
# appsmith_email_pass: S3Cr3T4m@1l
|
|
|
|
# Encryption settings. If not defined, random values will be created and used
|
|
# appsmith_encryption_pass: p@ssw0rd
|
|
# appsmith_encryption_salt: Salt
|
|
|
|
# Public URL used to access appsmith
|
|
appsmith_public_url: http://{{ inventory_hostname }}
|
|
|
|
# User signup can be disabled
|
|
appsmith_user_signup: True
|
|
# If signup is disabled, you can set a list of whitelisted email which will be allowed
|
|
appsmith_admin_emails: []
|
|
|