- Migrate from Docker to Debian 12 LXC container - Full stack: Nginx, MariaDB, Redis, PHP 8.2-FPM, Nextcloud - Rewrite nextcloudctl CLI with install/backup/restore/ssl/occ commands - New UCI config schema: main, db, redis, ssl, backup sections - Enhanced RPCD backend with 15 methods - KISS dashboard with Overview/Backups/SSL/Logs tabs - Updated dependencies for LXC packages - SecuBox menu path integration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
654 B
Plaintext
32 lines
654 B
Plaintext
config nextcloud 'main'
|
|
option enabled '0'
|
|
option data_path '/srv/nextcloud'
|
|
option http_port '8080'
|
|
option domain 'cloud.local'
|
|
option admin_user 'admin'
|
|
option admin_password ''
|
|
option memory_limit '1G'
|
|
option upload_max '512M'
|
|
option trusted_proxies '127.0.0.1'
|
|
|
|
config database 'db'
|
|
option type 'mariadb'
|
|
option name 'nextcloud'
|
|
option user 'nextcloud'
|
|
option password ''
|
|
|
|
config cache 'redis'
|
|
option enabled '1'
|
|
option memory '128M'
|
|
|
|
config haproxy 'ssl'
|
|
option enabled '0'
|
|
option domain ''
|
|
option acme '1'
|
|
|
|
config backup 'backup'
|
|
option enabled '1'
|
|
option schedule 'daily'
|
|
option keep '7'
|
|
option path '/srv/nextcloud/backups'
|