🎉 Improved backend structure & logs organization 🎉
This commit is contained in:
11
backend/utils/ssl_config.py
Normal file
11
backend/utils/ssl_config.py
Normal file
@ -0,0 +1,11 @@
|
||||
"""
|
||||
SSL-Konfiguration für HTTPS-Server
|
||||
Importiert SSL-Funktionalität aus der Hauptkonfiguration
|
||||
"""
|
||||
|
||||
try:
|
||||
from config.settings_copy import get_ssl_context
|
||||
except ImportError:
|
||||
def get_ssl_context():
|
||||
"""Fallback wenn settings_copy nicht verfügbar"""
|
||||
return None
|
Reference in New Issue
Block a user