A gateway/firewall task to be able to talk someone about the real job
Fibinger Ádám
2021-10-19 15b0f1f801e4328376ee7c2c9e8e355eb4270370
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# see https://symfony.com/doc/current/reference/configuration/framework.html
framework:
    secret: '%env(APP_SECRET)%'
    #csrf_protection: true
    http_method_override: false
 
    # 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.
    session:
        handler_id: null
        cookie_secure: auto
        cookie_samesite: lax
        storage_factory_id: session.storage.factory.native
 
    #esi: true
    #fragments: true
    php_errors:
        log: true
 
when@test:
    framework:
        test: true
        session:
            storage_factory_id: session.storage.factory.mock_file