mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02: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…
Add table
Reference in a new issue