creativeorange/laravel-served-by

Automatically set the Served By for requests in your Laravel Framework.

v3.0.0 2023-02-24 10:29 UTC

This package is auto-updated.

Last update: 2024-03-24 13:00:56 UTC


README

Latest Version on Packagist Total Downloads

Useful middleware for Laravel Requests & Jobs to determine which server is serving (or running) the request. For HTTP requests, the identifier string will be sent back as HTTP Header "X-Served-By". In jobs, it is possible to send Context to Flare, or tag the server in Horizon.

Installation

You can install the package via composer:

composer require creativeorange/laravel-served-by

For Laravel 8 or lower please install version 1.

Usage HTTP requests

To allow Served By for all your routes, add the ServedBy middleware at the top of the $middleware property of app/Http/Kernel.php class:

protected $middleware = [
    \Creativeorange\ServedBy\Http\Middleware\ServedBy::class,
    // ...
];

Flare

If you use Flare, you can add the following to your job(s):

    /**
     * Get the middleware the job should pass through.
     *
     * @return array
     */
    public function middleware()
    {
        return [new Creativeorange\ServedBy\Http\Middleware\Jobs\ServedBy];
    }

Configuration

The defaults are set in config/served-by.php. Publish the config to copy the file to your own config:

php artisan vendor:publish --tag="served-by"

By default, you can also overwrite the identifier string by adding SERVED_BY_IDENTIFIER to your .env

Credits

License

The MIT License (MIT). Please see License File for more information.