Julien Portalier
Julien Portalier
There shouldn't be more configuration required, as long as Prax is listening on :20558 You hit the dreadful bug that makes the host non determinable (prax can't proxy without a...
SSL never reaches the application itself. Prax will handle the HTTPS part and only tells the application about it with the `X-Forwarded-Proto: https` HTTP header. Maybe your application expects something...
Thanks! I'm only using debian derivatives, so I don't know much about other distros. Could you push a pull request that would check for either distro, like the presence of...
No, I'm still waiting for one.
I had some problems too with file uploads. Some files will always fail, while others are fine. It may have something to do with Racker. I don't recall having problems...
I'm afraid I can't help much. Different errors are raised.
Version managers are each setting their own vars, so it doesn't work to just clean some vars. Prax would have to know about all version managers and filter-out their variables...
Thanks for the hint @mpapis ! I'll try with a blacklist solution.
Thanks for the input. I'll try a nicer cleanup of shell environment. Right now I only let `$HOME` slip by, and I didn't break much projects (only `$HOME` was required...
You can `export C_INCLUDE_PATH=/usr/lib/clang/5.0.0/include` so libclang it will find the clang headers... Yes, by default it won't add the clang includes (`stddef.h`, ...). Thought I since found a way to...