Added an example
This commit is contained in:
parent
616c19bd41
commit
3c427b8bd3
26
README.md
26
README.md
|
@ -1,3 +1,27 @@
|
|||
# puppet-wmdeit-nextcloud
|
||||
|
||||
To create a nextcloud instance
|
||||
To create our nextcloud instance
|
||||
|
||||
|
||||
class {"wmdeit_nextcloud":
|
||||
instanceid => '123456',
|
||||
passwordsalt => '123456',
|
||||
secret => 'secret',
|
||||
|
||||
trusted_domains => [
|
||||
'cloud.example.com',
|
||||
'nextcloud.example.com',
|
||||
],
|
||||
|
||||
db_user=>"nextcloud",
|
||||
db_name=>"nextcloud",
|
||||
db_password => 'password',
|
||||
db_host => 'localhost',
|
||||
|
||||
redis_password => '123',
|
||||
|
||||
install_dir => '/var/www/nextcloud',
|
||||
data_dir => '/var/db/nextcloud',
|
||||
main_domain => "cloud.wikimedia.de"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue