-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcfg.example
44 lines (36 loc) · 2.02 KB
/
cfg.example
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
# Here you can configure additional allowed hosts. Seperate the domains with a comma
# export ALLOWED_HOSTS="custom.domain.com,custom2.domain.com"
# Set this to True, if Linux-Arbeitsplatz should not run the welcome assistant.
# For that especially Active Directory Server should be configured.
# Enable the unix service if you skip the automated install: /usr/bin/systemctl enable linux-arbeitsplatz-unix.service
export LINUX_ARBEITSPLATZ_CONFIGURED=False
# Mail Settings
# (This is only for the management interface, not for other services like nextcloud)
export EMAIL_HOST=""
export EMAIL_PORT=""
export EMAIL_HOST_USER=""
export EMAIL_HOST_EMAIL=""
export EMAIL_HOST_PASSWORD=""
# only activate (uncomment) one of these:
export EMAIL_USE_TLS=True
#export EMAIL_USE_SSL=True
# This is ignored, if AUTH_LDAP_SERVER_URI is not blank
# This is the initial "Administrator" password, if your instance uses no LDAP.
export INITIAL_ADMIN_PASSWORD_WITHOUT_LDAP="LibreWorkspace"
# Samba AD Settings
# Change all instances of int and de to the real domain components
# Example for AUTH_LDAP_SERVER_URI would be: "ldaps://la.int.de"
# If you want to deactivate Samba AD integration, set AUTH_LDAP_SERVER_URI to ""
export AUTH_LDAP_SERVER_URI=""
export AUTH_LDAP_DC="dc=int,dc=de"
export AUTH_LDAP_BIND_DN="cn=Administrator,cn=users,dc=int,dc=de"
export AUTH_LDAP_BIND_PASSWORD="#####"
export AUTH_LDAP_USER_DN_TEMPLATE="cn=%(user)s,cn=users,dc=int,dc=de"
export AUTH_LDAP_GROUP_SEARCH_BASE="cn=Groups,dc=int,dc=de"
export AUTH_LDAP_GROUP_ADMIN_DN="CN=Administrators,CN=Builtin,DC=int,DC=de"
# Separate them with a ,
export HIDDEN_LDAP_USERS="dns-hostname"
# Don't change the admin status for these nextcloud users automatically also if they are not in group "Domain Admin". Separate them with ,
# If set this value to "*" then the whole admin sync operation will be disabled.
export IGNORE_ADMIN_STATUS_FOR_NEXTCLOUD_USERS=""
export NEXTCLOUD_INSTALLATION_DIRECTORY="/var/www/nextcloud/"