This repository has been archived on 2023-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
pleroma-ansible-playbook/defaults/main.yml
Dan Anglin 2cb1891456
changed: reduced default connection limit to 15
Reduced default connection limit to the pleroma database to 15.
This parameter is now configurable.
2019-10-15 09:26:13 +01:00

36 lines
893 B
YAML

---
pleroma_defaults:
config:
email: admin@localhost
notifyEmail: no_reply@{{ pleroma.config.host }}
host: pleroma.localhost
listeningPort: 4000
instanceName: "Ansible Pleroma"
instanceDescription: "A new single instance of Pleroma"
characterLimit: 5000
registrationsOpen: "false"
dynamicConfiguration: "false"
healthCheck: "true"
logLevel: info
federating: "true"
db:
name: pleroma_db
user: pleroma
connLimit: 15
postgresServer:
pg_hba:
- type: local
database: postgres
user: postgres
address: ""
method: peer
- type: local
database: "{{ pleroma.config.db.name }}"
user: postgres
address: ""
method: peer
- type: host
database: "{{ pleroma.config.db.name }}"
user: "{{ pleroma.config.db.user }}"
address: 127.0.0.1/32
method: md5