Astervis Docs

Configuration

Configure Astervis after installation

After installation, Astervis is ready to use with default settings. This section covers advanced configuration options.

Configuration Files

LocationPurpose
/opt/astervis/.envEnvironment variables
/opt/astervis/docker-compose.ymlContainer settings
/etc/astervis/config.tomlInstaller configuration

What You Can Configure

Quick Reference

View Current Configuration

# Show environment variables
cat /opt/astervis/.env
 
# Show installer config
cat /etc/astervis/config.toml

Apply Configuration Changes

Most changes require restarting services:

cd /opt/astervis
 
# Restart all services
docker compose down && docker compose up -d
 
# Restart specific service
docker compose restart app

Check Service Status

sudo astervis-installer status

Default Ports

ServiceInternalExternal
Dashboard64648443 (HTTPS)
API5555Via Nginx
Database5432
Cache6379

Only port 8443 (HTTPS) is exposed externally. All other services are internal to the Docker network.

Next Steps

Start with the most common configuration tasks:

  1. Environment Variables — adjust ports, timeouts, URLs
  2. MySQL Connection — if auto-detection didn't work
  3. SSL Certificates — switch from self-signed to Let's Encrypt

On this page