Add secubox-app-gitea and luci-app-gitea packages: secubox-app-gitea: - LXC container with Alpine 3.21 rootfs - Gitea 1.22.6 binary (auto-detect amd64/arm64/armv7) - HTTP (3000) and SSH (2222) ports - SQLite database (embedded) - giteactl: install/uninstall/update/backup/restore luci-app-gitea: - Cyberpunk themed dashboard - Repository browser with clone URLs - User management interface - Server and security settings - Backup/restore functionality - 18 RPCD methods Resource requirements: 256MB RAM minimum, ~100MB storage Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
541 B
Plaintext
24 lines
541 B
Plaintext
config gitea 'main'
|
|
option enabled '0'
|
|
option http_port '3000'
|
|
option ssh_port '2222'
|
|
option http_host '0.0.0.0'
|
|
option data_path '/srv/gitea'
|
|
option memory_limit '512M'
|
|
option app_name 'SecuBox Git'
|
|
option domain 'git.local'
|
|
|
|
config server 'server'
|
|
option protocol 'http'
|
|
option disable_registration 'false'
|
|
option require_signin 'false'
|
|
option landing_page 'explore'
|
|
|
|
config database 'database'
|
|
option type 'sqlite3'
|
|
option path '/data/gitea.db'
|
|
|
|
config admin 'admin'
|
|
option username 'admin'
|
|
option email 'admin@localhost'
|