mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 15:02:19 +05:30
Allow secure headers from internal network for production deployment
This commit is contained in:
parent
4231f99717
commit
d921616360
12
api/config/config-prod.php
Normal file
12
api/config/config-prod.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return [
|
||||||
|
'components' => [
|
||||||
|
'request' => [
|
||||||
|
'trustedHosts' => [
|
||||||
|
'private',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
Loading…
Reference in New Issue
Block a user