Fix sourcegraph errors

This commit is contained in:
LukeGus
2025-09-30 21:40:06 -05:00
parent 52991f9eb3
commit d59ecad24c
2 changed files with 14 additions and 0 deletions

View File

@@ -29,6 +29,13 @@ http {
index index.html index.htm;
}
# Handle missing source map files gracefully
location ~* \.map$ {
return 404;
access_log off;
log_not_found off;
}
location ~ ^/users(/.*)?$ {
proxy_pass http://127.0.0.1:30001;
proxy_http_version 1.1;