1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Properly proxy assets

This commit is contained in:
RGBCube 2024-01-10 12:46:38 +03:00
parent 658b1f63e6
commit f18e94f33b
No known key found for this signature in database

View file

@ -172,6 +172,10 @@
locations."/".extraConfig = '' locations."/".extraConfig = ''
proxy_pass http://localhost:${toString cfg.port}/404; proxy_pass http://localhost:${toString cfg.port}/404;
''; '';
locations."/assets".extraConfig = ''
proxy_pass http://localhost:${toString cfg.port}/assets;
'';
}; };
}; };