From 38181ae4e9af4d58db6bd4b913dd25197d610d0a Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Mon, 24 Jun 2024 17:44:46 +0200 Subject: [PATCH] Update nginx.conf --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index df576c5..216a1e2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,13 +6,13 @@ http { server_name _; location / { - root /var/www/html; + root /usr/share/nginx/html; index index.html; } location /img { include /etc/nginx/mime.types; - alias /var/www/html/img; + alias /usr/share/nginx/html/img; } location = /favicon.ico { access_log off; log_not_found off; }