Update Apache configuration and frontend dependencies for improved performance and compatibility

This commit adds a ProxyTimeout setting for all proxy connections in the Apache configuration, enhancing the server's ability to manage long-lived connections. Additionally, it updates the frontend dependencies, specifically upgrading `eslint` to version 9.39.1 and `vite` to version 7.2.2, ensuring better compatibility and performance in the development environment. These changes contribute to a more robust and efficient application.
This commit is contained in:
Torsten Schulz (local)
2025-11-15 23:35:15 +01:00
parent 1535c8795b
commit 1bb5f61b57
3 changed files with 663 additions and 797 deletions

View File

@@ -55,8 +55,10 @@
RequestHeader set X-Real-IP %{REMOTE_ADDR}s
RequestHeader set X-Forwarded-For %{REMOTE_ADDR}s
</IfModule>
ProxyTimeout 3600
</LocationMatch>
# Timeout für alle Proxy-Verbindungen (außerhalb von LocationMatch)
ProxyTimeout 3600
# API-Routen
ProxyPass /api http://localhost:3050/api