Committing the script.
This commit is contained in:
25
100-nextcloud.srv.nextcloud.config/.htaccess
Normal file
25
100-nextcloud.srv.nextcloud.config/.htaccess
Normal file
@ -0,0 +1,25 @@
|
||||
# Section for Apache 2.4 to 2.6
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
<IfModule mod_access_compat.c>
|
||||
Order Allow,Deny
|
||||
Deny from all
|
||||
Satisfy All
|
||||
</IfModule>
|
||||
|
||||
# Section for Apache 2.2
|
||||
<IfModule !mod_authz_core.c>
|
||||
<IfModule !mod_access_compat.c>
|
||||
<IfModule mod_authz_host.c>
|
||||
Order Allow,Deny
|
||||
Deny from all
|
||||
</IfModule>
|
||||
Satisfy All
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
# Section for Apache 2.2 to 2.6
|
||||
<IfModule mod_autoindex.c>
|
||||
IndexIgnore *
|
||||
</IfModule>
|
||||
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'instanceid' => 'oc4gc9expjd1',
|
||||
'passwordsalt' => '3Hq8xzxWFMJ4LYgHOuioVr9QmHrmJY',
|
||||
'secret' => 'exelHJxpGqrEseQQZJF0WUDh9Om2+/Ztg4SUPqXfRRbpCswe',
|
||||
'trusted_domains' =>
|
||||
array (
|
||||
0 => 'files.rsmsn.co',
|
||||
1 => 'auth.rsmsn.co',
|
||||
2 => '192.168.200.52',
|
||||
3 => 'overras.duckdns.org',
|
||||
4 => '*.rsmsn.co',
|
||||
5 => '192.168.200.50',
|
||||
),
|
||||
'datadirectory' => '/srv/nextcloud/data',
|
||||
'dbtype' => 'mysql',
|
||||
'version' => '24.0.5.1',
|
||||
'overwrite.cli.url' => 'https://files.rsmsn.co',
|
||||
'overwritehost' => 'files.rsmsn.co',
|
||||
'dbname' => 'nextcloud',
|
||||
'dbhost' => 'localhost',
|
||||
'dbport' => '',
|
||||
'dbtableprefix' => 'oc_',
|
||||
'mysql.utf8mb4' => true,
|
||||
'dbuser' => 'nextcloud',
|
||||
'dbpassword' => 'B%nf*P3hpf$',
|
||||
'installed' => true,
|
||||
'mail_from_address' => 'info',
|
||||
'mail_smtpmode' => 'smtp',
|
||||
'mail_sendmailmode' => 'smtp',
|
||||
'mail_domain' => 'rsmsn.co',
|
||||
'mail_smtpauthtype' => 'PLAIN',
|
||||
'mail_smtphost' => 'monday.mxrouting.net',
|
||||
'mail_smtpport' => '587',
|
||||
'mail_smtpsecure' => 'ssl',
|
||||
'maintenance' => false,
|
||||
'theme' => '',
|
||||
'loglevel' => 2,
|
||||
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
|
||||
'default_locale' => 'en_US',
|
||||
'default_phone_region' => 'US',
|
||||
'force_locale' => 'en_US',
|
||||
'allow_user_to_change_display_name' => true,
|
||||
'session_lifetime' => 86400,
|
||||
'memcache.local' => '\\OC\\Memcache\\Redis',
|
||||
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
||||
'redis' =>
|
||||
array (
|
||||
'host' => 'localhost',
|
||||
'port' => 6379,
|
||||
),
|
||||
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
||||
'updater.secret' => '$2y$10$tbm0qnhhkFzm9sod9RsrI.DMgdr3X.IgCAq7maSlvaZ8RRxtS03DW',
|
||||
);
|
||||
91
100-nextcloud.srv.nextcloud.config/config.php
Normal file
91
100-nextcloud.srv.nextcloud.config/config.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'instanceid' => 'oc4gc9expjd1',
|
||||
'passwordsalt' => '3Hq8xzxWFMJ4LYgHOuioVr9QmHrmJY',
|
||||
'secret' => 'exelHJxpGqrEseQQZJF0WUDh9Om2+/Ztg4SUPqXfRRbpCswe',
|
||||
'trusted_domains' =>
|
||||
array (
|
||||
0 => 'files.rsmsn.co',
|
||||
1 => 'auth.rsmsn.co',
|
||||
2 => '192.168.200.52',
|
||||
3 => 'overras.duckdns.org',
|
||||
5 => '192.168.200.50',
|
||||
6 => '*.rsmsn.co',
|
||||
),
|
||||
'trusted_proxies' =>
|
||||
array (
|
||||
0 => 'localhost',
|
||||
1 => '192.168.200.52',
|
||||
),
|
||||
'overwriteprotocol' => 'https',
|
||||
'overwrite.cli.url' => 'https://files.rsmsn.co/',
|
||||
'overwritehost' => 'files.rsmsn.co',
|
||||
'datadirectory' => '/srv/nextcloud/data',
|
||||
'dbtype' => 'mysql',
|
||||
'version' => '28.0.4.1',
|
||||
'dbname' => 'nextcloud',
|
||||
'dbhost' => 'localhost',
|
||||
'dbport' => '',
|
||||
'dbtableprefix' => 'oc_',
|
||||
'mysql.utf8mb4' => true,
|
||||
'dbuser' => 'nextcloud',
|
||||
'dbpassword' => 'B%nf*P3hpf$',
|
||||
'installed' => true,
|
||||
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
|
||||
'mail_from_address' => 'no-reply-web',
|
||||
'mail_smtpmode' => 'smtp',
|
||||
'mail_sendmailmode' => 'smtp',
|
||||
'mail_domain' => 'rsmsn.co',
|
||||
'mail_smtpauthtype' => 'LOGIN',
|
||||
'mail_smtphost' => 'monday.mxrouting.net',
|
||||
'mail_smtpport' => '587',
|
||||
'mail_smtpsecure' => 'tls',
|
||||
'maintenance' => false,
|
||||
'maintenance_window_start' => 5,
|
||||
'theme' => '',
|
||||
'loglevel' => 0,
|
||||
'log_type' => 'file',
|
||||
'syslog_tag' => 'Nextcloud',
|
||||
'logfile' => '/var/log/apache2/nextcloud.log',
|
||||
'logdateformat' => 'F d, Y H:i:s',
|
||||
'default_locale' => 'en_US',
|
||||
'default_phone_region' => 'US',
|
||||
'force_locale' => 'en_US',
|
||||
'allow_user_to_change_display_name' => true,
|
||||
'lost_password_link' => 'disabled',
|
||||
'social_login_auto_redirect' => false,
|
||||
'mail_smtpauth' => 1,
|
||||
'mail_smtpname' => 'no-reply-web@rsmsn.co',
|
||||
'mail_smtppassword' => 'u5BZKt62z*7xp&',
|
||||
'app_install_overwrite' =>
|
||||
array (
|
||||
0 => 'richdocumentscode_arm64',
|
||||
1 => 'richdocumentscode',
|
||||
),
|
||||
'memories.exiftool' => '/srv/nextcloud/apps/memories/bin-ext/exiftool-amd64-glibc',
|
||||
'memories.vod.path' => '/srv/nextcloud/apps/memories/bin-ext/go-vod-amd64',
|
||||
'memories.index.mode' => '3',
|
||||
'memcache.local' => '\\OC\\Memcache\\Redis',
|
||||
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
||||
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
||||
'opcache.interned_strings_buffer' => 8,
|
||||
'redis' =>
|
||||
array (
|
||||
'host' => 'localhost',
|
||||
'port' => 6379,
|
||||
),
|
||||
'enabledPreviewProviders' =>
|
||||
array (
|
||||
0 => 'OC\\Preview\\Image',
|
||||
1 => 'OC\\Preview\\HEIC',
|
||||
2 => 'OC\\Preview\\TIFF',
|
||||
),
|
||||
'twofactor_enforced' => 'true',
|
||||
'twofactor_enforced_groups' =>
|
||||
array (
|
||||
0 => 'family',
|
||||
),
|
||||
'twofactor_enforced_excluded_groups' =>
|
||||
array (
|
||||
),
|
||||
);
|
||||
2406
100-nextcloud.srv.nextcloud.config/config.sample.php
Normal file
2406
100-nextcloud.srv.nextcloud.config/config.sample.php
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user