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/vars/main.yml
Dan Anglin b0ddbc30ad
added: configuration for Pleroma
This merge request adds the template file and default variables for
configuring Pleroma.
Also included in this merge request are:

- added: Makefile to produce the secret key base, signing salt and the
public and private keys for web encryption.
- fixed: Pleroma OTP builds are now downloaded from the stable branch.
- changed: removed data from the pleroma task and added them in the
variable directory.
2019-10-15 09:16:24 +01:00

23 lines
810 B
YAML

---
pleroma_user:
group: pleroma
home: /opt/pleroma
id: 1200
name: pleroma
shell: /bin/false
pleroma_config_dir: /etc/pleroma
pleroma_base_data_dir: /var/lib/pleroma
pleroma_static_dir: "{{ pleroma_base_data_dir }}/static"
pleroma_uploads_dir: "{{ pleroma_base_data_dir }}/uploads"
pleroma_ssl_folder: /etc/ssl/pleroma
pleroma_ssl_privateKeyPath: "{{ pleroma_ssl_folder }}/pleroma.key"
pleroma_ssl_csrPath: "{{ pleroma_ssl_folder }}/pleroma.csr"
pleroma_ssl_selfSignedCertPath: "{{ pleroma_ssl_folder }}/pleroma.crt"
pleroma_postgres_log_dir: /var/log/postgresql
pleroma_postgres_base_conf: /etc/postgresql
pleroma_postgres_confd: "{{ pleroma_postgres_base_conf }}/conf.d"
pleroma_postgres_confd_symlink: /var/lib/postgresql/11/data/pg_conf.d
pleroma_postgres_unix_socket_dir: /var/run/postgresql