From 28617de29bec486f02996204ea64588f1a81123f Mon Sep 17 00:00:00 2001 From: Joseph Smyth Date: Thu, 28 Aug 2025 10:27:22 +0100 Subject: [PATCH] Added fix for nginx and Gutenberg editor Key source https://stackoverflow.com/questions/30379940/how-do-i-get-the-wordpress-json-api-to-work-on-nginx-server/50734661#50734661 --- ...ow-to-install-wordpress-next-to-your-magento-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/best-practices/usage/how-to-install-wordpress-next-to-your-magento-installation.md b/docs/best-practices/usage/how-to-install-wordpress-next-to-your-magento-installation.md index b678b702..cef66fdb 100644 --- a/docs/best-practices/usage/how-to-install-wordpress-next-to-your-magento-installation.md +++ b/docs/best-practices/usage/how-to-install-wordpress-next-to-your-magento-installation.md @@ -85,7 +85,7 @@ Create a `/data/web/nginx/server.wordpress` with the following content: location /blog { root /data/web/public; index index.php; - try_files $uri $uri/ /blog/index.php; + try_files $uri $uri/ /blog/index.php$is_args$args; location ~ \.php$ { echo_exec @phpfpm;