We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58152e6 commit e250cbeCopy full SHA for e250cbe
INSTALLATION.md
@@ -21,3 +21,11 @@
21
- `php artisan security-headers:install`
22
- You can publish the package config file & change site logo and favicon with email preference
23
- `php artisan vendor:publish --provider="MonishKhatri\SecurityHeaders\SecurityHeadersServiceProvider" --tag="config"`
24
+- Add Middleware in `app/Http/Kernel.php`
25
+ ```
26
+ protected $middlewareGroups = [
27
+ 'web' => [
28
+ ...
29
+ \App\Http\Middleware\SecurityHeadersMiddleware::class,
30
+ ],
31
0 commit comments