forked from consuldemocracy/installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall
53 lines (45 loc) · 1.05 KB
/
all
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
app_name: consul
server_hostname: "{{ ansible_default_ipv4.address }}"
secret_key_base: "change_me"
# Server Timzone + Locale
timezone: America/Montevideo
locale: es_ES.UTF-8
# Auth0 settings
auth0_client_id: ""
auth0_client_secret: ""
auth0_domain: ""
# General settings
root_access: true
deploy_user: deploy
deploy_dir: "/home/{{ deploy_user }}/"
deploy_password: test
deploy_app_name: test
deploy_server_hostname: 127.0.0.1
shared_dirs:
- releases
- repo
- shared
- shared/config
- shared/log
- shared/public
- shared/tmp
ssh_public_key_path: "~/.ssh/id_rsa.pub"
# Ruby
ruby_version: 2.3.2
#Ruby
rvm1_user: "{{ deploy_user }}"
rvm1_rubies: ["ruby-{{ ruby_version }}"]
#Postgresql
database_name: "consul_production"
database_user: "{{ deploy_user }}"
database_password: "{{ deploy_user }}"
database_hostname: "localhost"
database_port: 5432
#SMTP
smtp_address: "smtp.example.com"
smtp_port: 25
smtp_domain: "your_domain.com"
smtp_user_name: "username"
smtp_password: "password"
smtp_authentication: "plain"