Add HTTPS schema enforcement in AppServiceProvider and set FORCE_HTTPS in Docker Compose
All checks were successful
Deploy Development / deploy (push) Successful in 2m31s
All checks were successful
Deploy Development / deploy (push) Successful in 2m31s
This commit is contained in:
@@ -15,7 +15,11 @@ class AppServiceProvider extends ServiceProvider {
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
//
|
||||
// Force HTTPS URLs when behind a proxy (Traefik)
|
||||
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
|
||||
\URL::forceSchema('https');
|
||||
}
|
||||
|
||||
Blade::extend(function($value) {
|
||||
return preg_replace('/\@define(.+)/', '<?php ${1}; ?>', $value);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user