File tree Expand file tree Collapse file tree 1 file changed +18
-8
lines changed
Expand file tree Collapse file tree 1 file changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -227,16 +227,26 @@ If you ran the migrations you will have an admin user in the database with the f
227227- ** Identity** : ` admin`
228228- ** Password** : ` dotadmin`
229229
230- > ** Production only ** : Make sure you modify the default admin credentials.
230+ ---
231231
232- > ** Development only** : ` session.cookie_secure` does not work locally so make sure you modify your ` local.php` , as per the following:
232+ > [! WARNING]
233+ > ** Production only**
234+ >
235+ > Make sure you modify the default admin credentials.
236+
237+ ---
238+
239+ > [! WARNING]
240+ > ** Development only**
241+ >
242+ > ` session.cookie_secure` does not work locally so make sure you modify your ` local.php` , as per the following:
233243
234244` ` ` php
235- return [
236- ' session_config' => [
237- ' cookie_secure' => false,
238- ]
239- ];
245+ return [
246+ ' session_config' => [
247+ ' cookie_secure' => false,
248+ ],
249+ ];
240250` ` `
241251
242- > Do not change this in ` local.php.dist` as well because this value must remain ` true` on production.
252+ Do not change this in ` local.php.dist` as well because this value must remain ` true` on production.
You can’t perform that action at this time.
0 commit comments