From 777339c3e118f90c756e1e7d81c53bc4857c60fb Mon Sep 17 00:00:00 2001 From: Raymonzut <40148684+Raymonzut@users.noreply.github.com> Date: Tue, 16 Jun 2020 19:07:02 +0200 Subject: [PATCH] Allow requesting without .html --- client/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/nginx.conf b/client/nginx.conf index eaef640..1edd332 100644 --- a/client/nginx.conf +++ b/client/nginx.conf @@ -24,7 +24,7 @@ http { location / { root /app; index index.html; - try_files $uri $uri/ $uri/index.html =404; + try_files $uri $uri/ $uri.html $uri/index.html =404; } location /css { alias /app/assets/styling;