Actualizar docker-compose.yml para optimizarlo para puesta en produccion. #4

Merged
nathalie merged 2 commits from felix/pedi2:master into master 2022-05-21 19:34:18 -03:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit 323ab09238 - Show all commits

View File

@ -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]);