Add default value for forceHttps in AppServiceProvider

This commit is contained in:
Daniel Supernault 2022-12-01 21:01:54 -07:00
parent ae20826fcc
commit 0cdab339ff
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot()
{
if(config('instance.force_https_urls')) {
if(config('instance.force_https_urls', true)) {
URL::forceScheme('https');
}