mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-29 17:53:16 +00:00
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()
|
public function boot()
|
||||||
{
|
{
|
||||||
if(config('instance.force_https_urls')) {
|
if(config('instance.force_https_urls', true)) {
|
||||||
URL::forceScheme('https');
|
URL::forceScheme('https');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue