From 222af9401fc57631f89ecf1c23d9740c6735e30b Mon Sep 17 00:00:00 2001 From: Gertjan Date: Tue, 3 Dec 2024 07:48:58 +0000 Subject: [PATCH] Fix route to /js/ folder in dev nginx --- nginx/config/core_dev.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx/config/core_dev.conf b/nginx/config/core_dev.conf index 78a0ca80..be067ad5 100644 --- a/nginx/config/core_dev.conf +++ b/nginx/config/core_dev.conf @@ -4,6 +4,10 @@ location = /favicon.ico { alias /www/data/res/bughog.ico; } +location /js/ { + root /www/data/; +} + location / { proxy_pass http://node:5173; proxy_set_header Host $host;