docs(proxy): update `sub_filter` for subfolder (#3046) [skip ci]
The updated `next.js` dependency has a new regex match in the code for `/^\/_next\/data\//`. This `sub_filter` creates invalid regex `/^\/overseerr/_next\/data\//` ```nginx sub_filter '/_next' '/$app/_next'; ``` It needs to be updated to substitute the correct the regex `/^\/overseerr\/_next\/data\//` ```nginx sub_filter '\/_next' '\/$app\/_next'; sub_filter '/_next' '/$app/_next'; ```pull/3045/head
parent
430b1ab871
commit
cf96db90ad
Loading…
Reference in new issue