Access
Open the following URL in your browser: http://<SERVER_IP>:24424
Login using the admin account:
- Username:
admin - Password: stored in
/root/chibisafe/docker-compose.ymlasADMIN_PASSWORD
Retrieve the password:
grep ADMIN_PASSWORD /root/chibisafe/docker-compose.yml
Admin credentials can be changed later from the web interface.
Initial Configuration
- Log in as
admin. - Navigate to
Settings → Service. - Set
Serve Uploads Fromto:http://<SERVER_IP>:24424 - If you later configure a domain name or HTTPS, update this value accordingly.
Important Files and Directories
- Install Path:
/root/chibisafe - Compose File:
/root/chibisafe/docker-compose.yml - Caddy Config:
/root/chibisafe/Caddyfile - Database:
/root/chibisafe/database - Uploads:
/root/chibisafe/uploads - Logs:
/root/chibisafe/logs
Docker Management
Check status:
docker compose -f /root/chibisafe/docker-compose.yml ps
View logs:
docker compose -f /root/chibisafe/docker-compose.yml logs -f
Restart services:
docker compose -f /root/chibisafe/docker-compose.yml restart
Stop services:
docker compose -f /root/chibisafe/docker-compose.yml down
Start services:
docker compose -f /root/chibisafe/docker-compose.yml up -d