Josesito
Explore posts from serversSolidStart behind nginx reverse proxy
Hello kind peoples, I am having trouble running SolidStart behind an NGINX reverse proxy
It "sort of works", I get the page to load with most content.
but there's some buggy behavior, it does not seem to load javascript nor handle redirects, which work perfectly fine if I am just running in a docker container without the reverse proxy,
for one of the pages the console just spits
TypeError: Cannot read properties of null (reading 'nextSibling')
..., not helpful at all.... for another page with a redirect, nothing happens.
So SolidStart seems to load some assets, but does not get to the WebSocket request that would occur locally.
So I assume there is some data getting lost because of the reverse proxy, but I am not sure11 replies
How does `query` cache actually work?
Caches are tricky and the docs do not explain the usage details, here are some questions:
- When is the cached value invalidated?
- Why do I want to use this cache?
- When could I run into issues with stale data by using this cache?
I read through the docs already:
- https://docs.solidjs.com/solid-router/reference/data-apis/query
17 replies