map on home

This commit is contained in:
Tykayn 2025-07-05 12:37:01 +02:00 committed by tykayn
parent a5cd69961f
commit 56f62c45bb
14 changed files with 588 additions and 15 deletions

View file

@ -4,6 +4,11 @@ doctrine:
options:
1002: "SET NAMES utf8mb4"
1000: true
# Optimisations pour éviter les timeouts
PDO::ATTR_TIMEOUT: 300
PDO::ATTR_PERSISTENT: false
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY: true
PDO::MYSQL_ATTR_INIT_COMMAND: "SET SESSION wait_timeout=300, interactive_timeout=300"
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)

View file

@ -5,7 +5,16 @@ framework:
http_method_override: false
handle_all_throwables: true
# Optimisations pour éviter les timeouts
cache:
app: cache.adapter.filesystem
system: cache.adapter.system
directory: '%kernel.cache_dir%/pools/app'
default_redis_provider: 'redis://localhost'
default_memcached_provider: 'memcached://localhost'
default_doctrine_dbal_provider: database_connection
default_pdo_provider: null
pools: { }
# Enables session support. Note that the session will ONLY be started if you read or write from it.
# Remove or comment this section to explicitly disable session support.