Web Analytics Made Easy - Statcounter
Skip to content

Produktionsbereitstellung

Anleitung zur Bereitstellung von Duckling in Produktionsumgebungen.

Backend mit Gunicorn

Installation

cd backend
source venv/bin/activate
pip install gunicorn

Grundlegende Nutzung

gunicorn -w 4 -b 0.0.0.0:5001 duckling:app

Empfohlene Konfiguration

gunicorn \
  --workers 4 \
  --threads 2 \
  --timeout 300 \
  --bind 0.0.0.0:5001 \
  --access-logfile /var/log/docling/access.log \
  --error-logfile /var/log/docling/error.log \
  app:app

Anzahl der Worker

Als Faustregel gilt: (2 × CPU-Kerne) + 1 Worker.


Frontend-Build

cd frontend
npm run build

Das Verzeichnis dist/ enthält statische Dateien, die zur Bereitstellung bereit sind.


Nginx-Konfiguration

Basis-Setup

# /etc/nginx/sites-available/duckling
server {
    listen 80;
    server_name your-domain.com;

    root /var/www/duckling/dist;
    index index.html;

    # Frontend-Routen
    location / {
        try_files $uri $uri/ /index.html;
    }

    # API-Proxy
    location /api/ {
        proxy_pass http://localhost:5001/api/;
        proxy_http_version 1.1;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        # Für Datei-Uploads
        client_max_body_size 100M;
        proxy_read_timeout 300s;
    }
}

Vollständige Produktionskonfiguration

upstream docling_backend {
    server unix:/run/duckling.sock fail_timeout=0;
}

server {
    listen 80;
    server_name docling.example.com;
    return 301 https://$server_name$request_uri;
}

server {
    listen 443 ssl http2;
    server_name docling.example.com;

    ssl_certificate /etc/letsencrypt/live/docling.example.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/docling.example.com/privkey.pem;

    # Sicherheits-Header
    add_header X-Frame-Options "SAMEORIGIN" always;
    add_header X-Content-Type-Options "nosniff" always;
    add_header X-XSS-Protection "1; mode=block" always;

    # Frontend
    root /var/www/duckling/dist;
    index index.html;

    location / {
        try_files $uri $uri/ /index.html;

        # Statische Assets cachen
        location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
            expires 1y;
            add_header Cache-Control "public, immutable";
        }
    }

    # API
    location /api/ {
        proxy_pass http://docling_backend;
        proxy_http_version 1.1;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        # Datei-Uploads
        client_max_body_size 200M;
        proxy_read_timeout 300s;
        proxy_connect_timeout 60s;
        proxy_send_timeout 300s;
    }
}

Systemd-Dienst

Erstellen Sie /etc/systemd/system/duckling.service:

[Unit]
Description=Duckling Backend
After=network.target

[Service]
User=www-data
Group=www-data
WorkingDirectory=/opt/duckling/backend
Environment="PATH=/opt/duckling/backend/venv/bin"
ExecStart=/opt/duckling/backend/venv/bin/gunicorn \
    --workers 4 \
    --bind unix:/run/duckling.sock \
    --timeout 300 \
    app:app
Restart=always

[Install]
WantedBy=multi-user.target

Dienst verwalten

# Aktivieren und starten
sudo systemctl enable duckling
sudo systemctl start duckling

# Status prüfen
sudo systemctl status duckling

# Logs ansehen
sudo journalctl -u duckling -f

Alternative: Caddy

Für eine einfachere Konfiguration können Sie Caddy verwenden:

docling.example.com {
    root * /var/www/duckling/dist
    file_server

    try_files {path} /index.html

    handle /api/* {
        reverse_proxy localhost:5001
    }

    header {
        X-Frame-Options "SAMEORIGIN"
        X-Content-Type-Options "nosniff"
    }
}

Umgebungsvariablen

In der Produktion setzen:

FLASK_ENV=production
SECRET_KEY=your-very-secure-random-key
DEBUG=False
FLASK_HOST=127.0.0.1
MAX_CONTENT_LENGTH=209715200  # 200MB

Sicherheit

Verwenden Sie in der Produktion niemals den Standard-SECRET_KEY. Erzeugen Sie einen sicheren Zufallsschlüssel:

python -c "import secrets; print(secrets.token_hex(32))"

Health Checks

Überwachen Sie die Gesundheit des Dienstes:

# Backend-Gesundheit
curl http://localhost:5001/api/health

# Antwort
{"status": "healthy", "service": "duckling-backend"}

Logging

Gunicorn-Logs

# Zugriffslog
tail -f /var/log/docling/access.log

# Fehlerlog
tail -f /var/log/docling/error.log

Strukturiertes Logging

In der Flask-App ergänzen:

import logging
from logging.handlers import RotatingFileHandler

handler = RotatingFileHandler(
    'logs/docling.log',
    maxBytes=10000000,
    backupCount=5
)
handler.setFormatter(logging.Formatter(
    '%(asctime)s %(levelname)s: %(message)s [in %(pathname)s:%(lineno)d]'
))
app.logger.addHandler(handler)

Backup-Strategie

Datenbank

# SQLite-Datenbank sichern
cp backend/history.db backups/history_$(date +%Y%m%d).db

Ausgaben

# Konvertierte Dateien sichern
tar -czf backups/outputs_$(date +%Y%m%d).tar.gz outputs/

Automatisierte Backups

In die Crontab eintragen:

0 2 * * * /opt/duckling/scripts/backup.sh