You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows for filite to work in edge(?) cases where binding to localhost is not enough.
Binding to localhost or 127.0.0.1 allows the app to be accessible only by the host itself and with sandboxed network configuration this makes it impossible to have it accessible in certain setups.
I've made quick change to current source to allow it but I'm not good at Rust. https://github.com/CatTheHacker/filite/commit/df89d52ae8fd513f4442d849e87bb7bfc1502fd6
Also in case of using reverse proxy in front of filite, it would be nice to have an option to use UNIX sockets to bypass network completely
Pretty sure that's configurable on the next branch but I'll double check. I'll also add unix socket support there, thanks for the suggestion. I don't plan on making any improvements to master myself since next is a complete rewrite and will replace it soon-ish (hopefully, but I haven't got a whole lot of free time to put in it at the moment), but if you open a PR I'll merge it.
This allows for filite to work in edge(?) cases where binding to
localhost
is not enough.Binding to
localhost
or127.0.0.1
allows the app to be accessible only by the host itself and with sandboxed network configuration this makes it impossible to have it accessible in certain setups.I've made quick change to current source to allow it but I'm not good at Rust.
https://github.com/CatTheHacker/filite/commit/df89d52ae8fd513f4442d849e87bb7bfc1502fd6
Also in case of using reverse proxy in front of filite, it would be nice to have an option to use UNIX sockets to bypass network completely
Nginx:
proxy_pass http://unix:/path/cat/.local/tmp/filite.sock:/
The text was updated successfully, but these errors were encountered: