Add default value for forceHttps in AppServiceProvider
This commit is contained in:
parent
ae20826fcc
commit
0cdab339ff
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue