forked from EMBL-EBI-TSI/ansible-owncloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
39 lines (33 loc) · 883 Bytes
/
main.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
37
38
39
---
# General
owncloud_url: 'http://localhost/owncloud'
owncloud_trusted_domains: [localhost]
owncloud_admin_email: root@localhost
owncloud_path: /var/www/html/owncloud
owncloud_data_path: /var/lib/owncloud
owncloud_user: apache
owncloud_group: apache
owncloud_admin: admin
owncloud_admin_pass: password
# List of application servers
owncloud_app_servers: [localhost]
# Theme
owncloud_theme_name:
owncloud_theme_repo:
# Database
owncloud_db_type: mysql
owncloud_db_name: owncloud
owncloud_db_user: oc_admin
owncloud_db_pass: password
owncloud_db_host: localhost
# Logging
owncloud_log_backend: owncloud
owncloud_log_level: 2
owncloud_log_rotate_size: 524288000
owncloud_log_timezone: UTC
# App store
owncloud_appstore_url: 'https://api.owncloud.com/v1'
owncloud_appstore_experimantal_enabled: false
# Misc apps
owncloud_user_ldap_config: {}
owncloud_files_antivirus_config: {}