Skip to content

Commit

Permalink
reorder config file
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 17, 2018
1 parent b2b8c62 commit 5a58541
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/csp.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
*/
'report_only_profile' => \Spatie\Csp\Profiles\Basic::class,

/*
* Headers will only be added if this setting is enabled
*/
'enabled' => env('CSP_ENABLED', true),

/*
* All violations against the csp policy will be reported to this url.
* A great service you could use for this is https://report-uri.com/
*
* You can override this setting by calling `reportTo` on your profile.
*/
'report_uri' => env('CSP_REPORT_URI', ''),

/*
* Headers will only be added if this setting is enabled
*/
'enabled' => env('CSP_ENABLED', true),
];

0 comments on commit 5a58541

Please sign in to comment.