Access Upstat
- 브라우저를 열고 다음 주소로 이동하세요:
http://<SERVER_IP>(HTTP) - Create your admin account immediately.
중요한 파일 및 디렉터리
- Upstat installation directory:
/root/upstat - 환경 파일:
/root/upstat/.env - Docker Compose 파일:
/root/upstat/docker-compose.yml - Caddy configuration:
/root/upstat/Caddyfile - PostgreSQL 데이터 볼륨:
/var/lib/docker/volumes/upstat_postgres_data/_data - Caddy data and config volumes:
/var/lib/docker/volumes/upstat_caddy_data/_data,/var/lib/docker/volumes/upstat_caddy_config/_data
스택 관리
Go to the installation directory:
cd /root/upstat
Common Docker Compose commands:
# Check status
docker compose ps
# View logs (follow live)
docker compose logs -f
# Restart all services
docker compose restart
# Stop services
docker compose down
# Start again
docker compose up -d
Domain & HTTPS (Caddy)
0. HTTPS does NOT work with IP addresses.
1. Point a domain (e.g. upstat.example.com) to your server’s IP address.
2. Update Caddyfile:
upstat.example.com {
reverse_proxy web:3000
}
3. Restart services:
docker compose -f /root/alist/docker-compose.yml restart
4. Caddy will automatically issue and renew SSL certificates.
