1
0
Fork 0

Adding config/trustedproxy.php

This commit is contained in:
Henrik Hautakoski 2023-01-29 19:32:43 +01:00
parent 4dd7ed6726
commit 5fd70f3793
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@ APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
HTTP_TRUSTED_PROXIES="192.168.1.1,192.168.1.2"
LOG_CHANNEL=stack
LOG_LEVEL=debug

5
config/trustedproxy.php Normal file
View file

@ -0,0 +1,5 @@
<?php
return [
'proxies' => env('HTTP_TRUSTED_PROXIES', []),
];