-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvariables.sh
42 lines (39 loc) · 883 Bytes
/
variables.sh
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
#!/bin/bash
#
## Piet's Host ## - ©2017, https://piets-host.de
#
# Edit the following Lines of Code
# If you don't want to use these variables,
# consider to start the Script with "-c" flag
# instead and use the default.json config-file.
url1="http://example.com"
ncname="my_nextcloud"
dbhost="localhost"
dbtype="mysql"
database_root="MyS€cretP@sS!" # Database root password
rootuser='root'
html='/var/www/html' # full installation path
folder='nextcloud1'
# E-mail
email="[email protected]"
smtpauth="LOGIN"
smtpport="587"
smtpname="[email protected]"
smtpsec="tls"
smtppwd="password1234!"
smtpauthreq=1
# Others
displayname='true'
rlchannel='stable'
memcache='APCu'
maintenance='false'
singleuser='false'
skeleton='none'
default_language='de'
enable_avatars='true'
rewritebase='false'
depend="true"
overwrite="true"
isconfig="false"
config_to_read="default.json"
cron="false"