From fd9259811d830732458f58b4951ac43a5c502742 Mon Sep 17 00:00:00 2001 From: shruub Date: Tue, 6 Jun 2023 23:36:59 +0200 Subject: [PATCH] This should work --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 0f02784..c558b82 100644 --- a/nginx.conf +++ b/nginx.conf @@ -26,8 +26,8 @@ http { server { listen 80; location / { - proxy_intercept_errors on; - error_page 400 500 404 /; + root /usr/share/nginx/html; # for whatever reason, this needs to be decleared on my vps. + index index.html index.htm; } } include /etc/nginx/conf.d/*.conf;