Allow secure headers from internal network for production deployment

This commit is contained in:
ErickSkrauch 2024-06-20 04:43:44 +02:00
parent 4231f99717
commit d921616360
No known key found for this signature in database
GPG Key ID: 669339FCBB30EE0E

View File

@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
return [
'components' => [
'request' => [
'trustedHosts' => [
'private',
],
],
],
];