P. J. Reed
P. J. Reed
I *used* to have multiple versions installed, one via flatpak and another via debian package, but I uninstalled the flatpak version a while back, and as far as I can...
Out of curiosity, what's the use case for this? How would you imagine it working and what would it be useful for?
Right now, it's a little bit of a pain to have a reverse proxy serve it from a different application root. The easiest way to handle this is probably to...
I know Apache can be pretty picky when it comes to trailing slashes; does changing the location to `` make a difference?
Ok, cool. I believe that you can use mod_rewrite to proxy websocket requests based on their headers; for example, this configuration is working for me: ```xml RewriteEngine on RewriteCond %{HTTP:Upgrade}...
If you're seeing POST requests in the log, that probably means that the rewrite rule conditions are probably not matching properly, and the connection is not being upgraded to a...
Ah, I think you're missing a RewriteRule. Also, the second ProxyPass/ProxyPassReverse directives are probably unnecessary. Try this: ```xml RewriteEngine on RewriteCond %{HTTP:Upgrade} websocket [NC] RewriteCond %{HTTP:Connection} upgrade [NC] RewriteRule .*...
Sorry for this being open so long without comment, but I thought I'd let you know that I just release a major update, and I also included an example of...
The `bag_positions` table stores its points as geometry objects, so even though the GUI doesn't have a way to search by location, you can manually run geospatial queries. As an...
Actually, you can also search for only the first coordinate from a bag file by searching on the `coordinate` in the `bags` table instead: ```sql SELECT DISTINCT b.path, b.filename FROM...