File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ Symfony provides the following env var processors:
194
194
parameters :
195
195
env(SECRET) : ' some_secret'
196
196
framework :
197
- secret : ' %env(string:SECRET)%'
197
+ secret : ' %env(string:SECRET)%'
198
198
199
199
.. code-block :: xml
200
200
@@ -234,7 +234,7 @@ Symfony provides the following env var processors:
234
234
parameters :
235
235
env(HTTP_METHOD_OVERRIDE) : ' true'
236
236
framework :
237
- http_method_override : ' %env(bool:HTTP_METHOD_OVERRIDE)%'
237
+ http_method_override : ' %env(bool:HTTP_METHOD_OVERRIDE)%'
238
238
239
239
.. code-block :: xml
240
240
@@ -280,8 +280,8 @@ Symfony provides the following env var processors:
280
280
parameters :
281
281
env(HEALTH_CHECK_METHOD) : ' Symfony\Component\HttpFoundation\Request::METHOD_HEAD'
282
282
security :
283
- access_control :
284
- - { path: '^/health-check$', methods: '%env(const:HEALTH_CHECK_METHOD)%' }
283
+ access_control :
284
+ - { path: '^/health-check$', methods: '%env(const:HEALTH_CHECK_METHOD)%' }
285
285
286
286
.. code-block :: xml
287
287
@@ -330,7 +330,7 @@ Symfony provides the following env var processors:
330
330
parameters :
331
331
env(TRUSTED_HOSTS) : ' ["10.0.0.1", "10.0.0.2"]'
332
332
framework :
333
- trusted_hosts : ' %env(json:TRUSTED_HOSTS)%'
333
+ trusted_hosts : ' %env(json:TRUSTED_HOSTS)%'
334
334
335
335
.. code-block :: xml
336
336
Original file line number Diff line number Diff line change @@ -78,9 +78,6 @@ This is how your security configuration can look in action:
78
78
),
79
79
));
80
80
81
- If your authenticators need separate providers, you will need to create a
82
- :doc: `chain of user providers </security/multiple_user_providers >`.
83
-
84
81
There is one limitation with this approach - you have to use exactly one entry point.
85
82
86
83
Multiple Authenticators with Separate Entry Points
You can’t perform that action at this time.
0 commit comments