Skip to content

Commit f092754

Browse files
authored
Update README.md
Signed-off-by: Alex Karajos <[email protected]>
1 parent 84555a6 commit f092754

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)