nextcloud/rootfs/bin/nextcloud-config

75 lines
3.9 KiB
Plaintext
Raw Normal View History

2022-02-14 07:38:12 +00:00
#!/command/with-contenv sh
2018-01-30 07:36:21 +00:00
set -ex
2019-03-16 11:41:58 +00:00
cd /var/lib/nextcloud
chmod +x ./occ
2018-01-30 07:55:27 +00:00
2018-01-30 10:11:38 +00:00
if [ ! -f /var/lib/nextcloud/data/.installed ]; then
2022-02-14 08:27:57 +00:00
/command/s6-setuidgid nginx ./occ maintenance:install \
2018-01-30 07:36:21 +00:00
--database=pgsql \
2019-03-16 11:41:58 +00:00
--database-host="$DB_HOST" \
--database-name="$DB_NAME" \
--database-user="$DB_USER" \
--database-pass="$DB_PASSWORD" \
2021-08-22 15:40:33 +00:00
--database-port="$DB_PORT" \
2019-03-16 11:41:58 +00:00
--admin-user="$ADMIN_USER" \
--admin-pass="$ADMIN_PASSWORD" \
2018-01-30 07:36:21 +00:00
--data-dir=/var/lib/nextcloud/data/ \
--no-interaction
2018-01-30 10:11:38 +00:00
touch /var/lib/nextcloud/data/.installed
2018-01-30 07:54:21 +00:00
fi
2022-02-14 08:27:57 +00:00
/command/s6-setuidgid nginx ./occ config:app:set --value cron core backgroundjobs_mode
/command/s6-setuidgid nginx ./occ app:enable files_sharing
/command/s6-setuidgid nginx ./occ app:enable text
/command/s6-setuidgid nginx ./occ app:enable files_pdfviewer
/command/s6-setuidgid nginx ./occ app:enable files_videoplayer
/command/s6-setuidgid nginx ./occ app:enable theming
/command/s6-setuidgid nginx ./occ app:enable photos
/command/s6-setuidgid nginx ./occ app:enable twofactor_totp
/command/s6-setuidgid nginx ./occ app:enable twofactor_backupcodes
/command/s6-setuidgid nginx ./occ app:enable twofactor_u2f
/command/s6-setuidgid nginx ./occ app:enable polls
/command/s6-setuidgid nginx ./occ app:enable calendar
/command/s6-setuidgid nginx ./occ app:enable contacts
/command/s6-setuidgid nginx ./occ app:enable news
/command/s6-setuidgid nginx ./occ app:enable tasks
/command/s6-setuidgid nginx ./occ app:enable notes
/command/s6-setuidgid nginx ./occ app:enable sociallogin
/command/s6-setuidgid nginx ./occ app:enable integration_mastodon
/command/s6-setuidgid nginx ./occ app:enable integration_github
/command/s6-setuidgid nginx ./occ app:enable integration_gitlab
/command/s6-setuidgid nginx ./occ app:disable activity
/command/s6-setuidgid nginx ./occ app:disable comments
/command/s6-setuidgid nginx ./occ app:disable files_trashbin
/command/s6-setuidgid nginx ./occ app:disable firstrunwizard
/command/s6-setuidgid nginx ./occ app:disable logreader
/command/s6-setuidgid nginx ./occ app:disable nextcloud_announcements
/command/s6-setuidgid nginx ./occ app:disable password_policy
/command/s6-setuidgid nginx ./occ app:disable serverinfo
/command/s6-setuidgid nginx ./occ app:disable support
/command/s6-setuidgid nginx ./occ app:disable survey_client
/command/s6-setuidgid nginx ./occ app:disable systemtags
/command/s6-setuidgid nginx ./occ app:disable updatenotification
2019-03-16 11:41:58 +00:00
2022-02-14 08:27:57 +00:00
/command/s6-setuidgid nginx ./occ config:system:set --value '\OC\Memcache\APCu' memcache.local
2019-03-17 17:22:10 +00:00
2022-02-14 08:27:57 +00:00
/command/s6-setuidgid nginx ./occ config:system:set --value "https://$DOMAIN" overwrite.cli.url
/command/s6-setuidgid nginx ./occ config:system:set --value "localhost" trusted_domains 0
/command/s6-setuidgid nginx ./occ config:system:set --value "$DOMAIN" trusted_domains 1
/command/s6-setuidgid nginx ./occ config:system:set --value "syslog" log_type
/command/s6-setuidgid nginx ./occ config:system:set --value "" logfile
/command/s6-setuidgid nginx ./occ config:system:set --value "3" loglevel
2018-01-30 09:15:20 +00:00
2022-02-14 08:27:57 +00:00
/command/s6-setuidgid nginx ./occ config:system:set --value "smtp" mail_smtpmode
/command/s6-setuidgid nginx ./occ config:system:set --value "${MAIL_SMTP_AUTH_TYPE:-PLAIN}" mail_smtpauthtype
/command/s6-setuidgid nginx ./occ config:system:set --value "$MAIL_FROM" mail_from_address
/command/s6-setuidgid nginx ./occ config:system:set --value "$MAIL_DOMAIN" mail_domain
/command/s6-setuidgid nginx ./occ config:system:set --value "${MAIL_SMTP_SECURITY:-tls}" mail_smtpsecure
/command/s6-setuidgid nginx ./occ config:system:set --value "${MAIL_SMTP_AUTH:-1}" mail_smtpauth
/command/s6-setuidgid nginx ./occ config:system:set --value "$MAIL_SMTP_HOST" mail_smtphost
/command/s6-setuidgid nginx ./occ config:system:set --value "${MAIL_SMTP_PORT:-587}" mail_smtpport
/command/s6-setuidgid nginx ./occ config:system:set --value "$MAIL_SMTP_NAME" mail_smtpname
/command/s6-setuidgid nginx ./occ config:system:set --value "$MAIL_SMTP_PASSWORD" mail_smtppassword