浏览代码

Fix a typo in the proxy configuration

Pierre Jaury 7 年之前
父节点
当前提交
91a8f919de
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      config/trustedproxy.php

+ 1 - 1
config/trustedproxy.php

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