HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/thread-self/cwd/app/Http/Middleware/
Upload File :
Current File : //proc/thread-self/cwd/app/Http/Middleware/TrustProxies.php
<?php



namespace App\Http\Middleware;



use Illuminate\Http\Request;

use Illuminate\Http\Middleware\TrustProxies as Middleware;



class TrustProxies extends Middleware

{

    /**

     * The trusted proxies for this application.

     *

     * @var array

     */

    protected $proxies;



    /**

     * The headers that should be used to detect proxies.

     *

     * @var int

     */

    protected $headers =

    Request::HEADER_X_FORWARDED_FOR |

    Request::HEADER_X_FORWARDED_HOST |

    Request::HEADER_X_FORWARDED_PORT |

    Request::HEADER_X_FORWARDED_PROTO |

    Request::HEADER_X_FORWARDED_AWS_ELB;

}