Skip to content

Commit cc83f9b

Browse files
committed
Update README.md
1 parent 1040604 commit cc83f9b

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,12 @@ add or remove code in the ```./webserver/templates/nginx.conf.template``` file f
308308

309309
see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redisengine-options) options and must add below code to config file.
310310

311+
modify redis cache configuration values in the ```./cakephp/config/app_local.php``` file.
312+
311313
```
312314
/**
313-
* Configure the cache adapters.
314-
*/
315+
* Configure the cache adapters.
316+
*/
315317
'Cache' => [
316318
'default' => [
317319
'className' => 'Redis',
@@ -322,9 +324,9 @@ see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redi
322324
],
323325
324326
/**
325-
* Configure the cache used for general framework caching.
326-
* Translation cache files are stored with this configuration.
327-
*/
327+
* Configure the cache used for general framework caching.
328+
* Translation cache files are stored with this configuration.
329+
*/
328330
'_cake_core_' => [
329331
'className' => 'Redis',
330332
'prefix' => 'myapp_cake_core_',
@@ -354,12 +356,14 @@ see [Redis Cache](https://book.cakephp.org/5/en/core-libraries/caching.html#redi
354356
],
355357
```
356358

357-
modify redis cache configuration values in the ```./cakephp/config/app_local.php``` file.
358-
359359
### DebugKit
360360

361361
[book.cakephp.org/debugkit/5/en/index.html#configuration](https://book.cakephp.org/debugkit/5/en/index.html#configuration)
362362

363+
If debugkit not showing and get error "This request has been blocked; the content must be served over HTTPS"
364+
365+
add code snippet ```<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">``` in the ```./cakephp/templates/Pages/home.php``` file.
366+
363367
### phpMyAdmin
364368

365369
You can add your own custom config.inc.php settings (such as Configuration Storage setup) by creating a file named config.user.inc.php with the various user defined settings in it, and then linking it into the container using:

0 commit comments

Comments
 (0)