Browse Source

Fix a typo in the proxy configuration

Pierre Jaury 7 năm trước cách đây
mục cha
commit
91a8f919de
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      config/trustedproxy.php

+ 1 - 1
config/trustedproxy.php

@@ -23,5 +23,5 @@ return [
      * how many proxies that client's request has
      * subsequently passed through.
      */
-    'proxies' => explode(env('TRUST_PROXIES', ''), ','),
+    'proxies' => explode(',', env('TRUST_PROXIES', '')),
 ];