Skip to content

Commit

Permalink
trailing slash added in APP_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaz3e committed Jul 29, 2023
1 parent 1d60360 commit f027565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/EnvironmentManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function saveFileWizard(Request $request)
'APP_KEY='.'base64:'.base64_encode(Str::random(32))."\n".
'APP_DEBUG='.$request->app_debug."\n".
'APP_LOG_LEVEL='.$request->app_log_level."\n".
'APP_URL='.$request->app_url."\n".
'APP_URL='.rtrim($request->app_url, '/')."\n".
'ASSET_URL='.'/public'."\n\n".
'DB_CONNECTION='.$request->database_connection."\n".
'DB_HOST='.$request->database_hostname."\n".
Expand Down

0 comments on commit f027565

Please sign in to comment.