forked from nathalie/pedi2
Modifico web.php para que sirva todo el contenido en https cuando esta en produccion
This commit is contained in:
parent
3a2ffde0ab
commit
323ab09238
|
@ -13,6 +13,10 @@ use Symfony\Component\HttpKernel\Exception\HttpException;
|
|||
|
|
||||
*/
|
||||
|
||||
if (App::environment('production')) {
|
||||
URL::forceScheme('https');
|
||||
}
|
||||
|
||||
Route::get('/', 'ProductoController@index')->name('productos');
|
||||
|
||||
Auth::routes(['register' => false]);
|
||||
|
|
Loading…
Reference in New Issue