From 377f4560d7af838ddc69af6a6007c632249f2f10 Mon Sep 17 00:00:00 2001 From: Johan Grande Date: Thu, 6 Aug 2015 12:05:44 +0200 Subject: [PATCH] Bug fix I installed MediaWiki and the app was showing only a white page. Maniack C on the YunoHost chat suggested this change and that fixed it for me. --- conf/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index a457ecf..7a8b82b 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -13,6 +13,7 @@ location PATHTOCHANGE { include fastcgi_params; fastcgi_param REMOTE_USER $remote_user; fastcgi_param PATH_INFO $fastcgi_path_info; + fastcgi_param SCRIPT_FILENAME $request_filename; } # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc;