Zugriff auf die Anwendung
Öffnen Sie Ihren Browser und gehen Sie zu: http://<SERVER_IP>
First startup may take a few minutes; a temporary Nginx 502 during this time is normal.
Standard-Anmeldedaten:
- E-Mail:
[email protected] - Passwort:
sample
Please do not forget to change your email and password from the settings page.
Wichtige Pfade
- Installationsverzeichnis:
/opt/automatisch - Project directory:
/opt/automatisch - Docker Compose-Datei:
/opt/automatisch/docker-compose.yml - Application storage (volume):
/var/lib/docker/volumes/automatisch_automatisch_storage/_data - PostgreSQL data (volume):
/var/lib/docker/volumes/automatisch_postgres_data/_data - Redis data (volume):
/var/lib/docker/volumes/automatisch_redis_data/_data - NGINX-Konfiguration:
/etc/nginx/sites-available/automatisch - NGINX enabled site:
/etc/nginx/sites-enabled/automatisch
Common Commands
Navigate to project:
cd /opt/automatisch
Protokolle anzeigen:
docker compose logs -f
Dienste neu starten:
docker compose restart
Stop / Start:
docker compose down
docker compose up -d
Behälter überprüfen:
docker ps
Dienstleistungen
- Main: Automatisch web application, exposed on port 3000
- Worker: Background job processor, internal
- PostgreSQL: Database service, internal (default port 5432)
- Redis: Queue and cache service, internal (default port 6379)
SSL mit einer Domain aktivieren
1. Richten Sie Ihre Domain auf die Server-IP aus.
2. Bearbeiten Sie die Nginx-Konfiguration und ersetzen Sie beide server_name _; mit Ihrer Domain (<your-domain>):
vim /etc/nginx/sites-available/automatisch
3. Certbot installieren:
apt install -y certbot python3-certbot-nginx
4. Führen Sie den folgenden Befehl aus, um ein gültiges Let's Encrypt-Zertifikat zu generieren:
certbot --nginx --non-interactive --agree-tos --email [email protected] -d yourdomain.com
5. Restart Nginx to apply the changes:
systemctl restart nginx
6. Open your browser and visit: https://yourdomain.com
