SSL Zertifikat Problem gelöst

Dieser Commit ist enthalten in:
2025-06-07 19:57:08 +02:00
Ursprung 12a03cd748
Commit 25b8a9a33d
6 geänderte Dateien mit 62 neuen und 7 gelöschten Zeilen

Datei anzeigen

@@ -22,6 +22,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 443
EXPOSE 5000
CMD ["python", "app.py"]

Datei anzeigen

@@ -1275,4 +1275,4 @@ def download_backup(backup_id):
return send_file(filepath, as_attachment=True, download_name=filename)
if __name__ == "__main__":
app.run(host="0.0.0.0", port=443, ssl_context='adhoc')
app.run(host="0.0.0.0", port=5000)