blob: 9887cea5eeedeb73c8017e479838d76790767851 (
plain)
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
|
#!/usr/bin/env bash
#
# Nextcloud
#
# retrieve current folder to place the config in the parent folder
thisFolder=`echo $0 | sed 's#env/start-webdav-apachedrone\.sh##'`
if [ -z "$thisFolder" ]; then
thisFolder="."
fi;
cat > $thisFolder/config.webdav.php <<DELIM
<?php
return array(
'run'=>true,
'host'=>'127.0.0.1:80/webdav/',
'user'=>'test',
'password'=>'pass',
'root'=>'',
'wait'=> 0
);
DELIM
|