forked from jamielinux/ansible-discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars_example.yml
39 lines (27 loc) · 1.26 KB
/
vars_example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
# COPY THIS FILE TO "group_vars/all/main.yml".
discourse_hostname: "discourse.example.com"
discourse_developer_emails: ["[email protected]"]
# See <docs/README.migrate-postgres.rst> for help on upgrading.
postgres_version: "9.4"
# Generate a long, random password here.
postgres_password: "12345678"
# If you have a dedicated postgres server, 25% of total RAM is a good starting
# point. If running postgres on the same server as everything else, try 12.5%.
#postgres_shared_buffers: "128MB"
# If you only have 1GB RAM, use 2 workers. Otherwise increase to 3 or 4.
#discourse_unicorn_workers: "2"
# If left as the default 'localhost', postfix and opendkim will be installed.
# Read <docs/README.mail.rst> for instructions.
#discourse_smtp_address: "localhost"
#discourse_smtp_port: "25"
#discourse_smtp_username: ""
#discourse_smtp_password: ""
#discourse_smtp_auth: "plain"
#discourse_smtp_start_tls: "true"
#-----------------------#
# Further configuration #
#-----------------------#
# In the "roles/" directory are a collection of roles. Each role has a
# "defaults/main.yml" file which contains the default variables. You can
# override any of the default variables by defining them below.