Fix typo in AppServiceProvider to use forceSchema instead of forceScheme
All checks were successful
Deploy Development / deploy (push) Successful in 2m11s

This commit is contained in:
Frank John Begornia
2025-12-18 12:31:11 +08:00
parent 58e1bad1cf
commit 075c6bfdf9

View File

@@ -18,7 +18,7 @@ class AppServiceProvider extends ServiceProvider
{
// Force HTTPS when behind a proxy (Traefik)
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
\URL::forceScheme('https');
\URL::forceSchema('https');
}
Storage::extend('sftp', function ($app, $config) {