From 227d23ec77ea29a5a3531af41e812984d79c2786 Mon Sep 17 00:00:00 2001 From: Dig2 <55265626+Dig2@users.noreply.github.com> Date: Fri, 29 Oct 2021 16:19:32 +0800 Subject: [PATCH] Update nginx.conf fix path traversal --- Resources/nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/nginx/nginx.conf b/Resources/nginx/nginx.conf index 04d4cb295..05c5d58f3 100644 --- a/Resources/nginx/nginx.conf +++ b/Resources/nginx/nginx.conf @@ -83,7 +83,7 @@ http { } location /graphql/console { - alias /public-console/; + alias /public-console; index index.html; try_files $uri $uri/ /index.html =405; }