From 8752e01e9e088c7b427534eae3e993e2ebd1cd3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88?= Date: Fri, 12 Sep 2025 21:14:47 -0400 Subject: [PATCH] chore: adding favicon to whitelist --- nginx/filesystem/etc/nginx/conf.d/nginx.conf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nginx/filesystem/etc/nginx/conf.d/nginx.conf b/nginx/filesystem/etc/nginx/conf.d/nginx.conf index a9fe5ad..bf7f639 100644 --- a/nginx/filesystem/etc/nginx/conf.d/nginx.conf +++ b/nginx/filesystem/etc/nginx/conf.d/nginx.conf @@ -55,7 +55,7 @@ server { } # Angular pages - location ~ ^/(background|user|vm-admin|twitch/|imdb-search|chunk|polyfills|main|styles|assets) { + location ~ ^/(background|user|vm-admin|twitch/|imdb-search|chunk|polyfills|main|styles|assets|favicon) { root /usr/share/nginx/html; try_files $uri $uri/ /index.html =404; } @@ -119,11 +119,6 @@ server { location = /50x.html { root /usr/share/nginx/html; } - - # Google search picked up things that don't exist, we need to get rid of them here - location /angular { - return 404; - } } server {