h.ono
h.ono
Not sure what fits the best to have good logging but for example, in 'source/controllers/api/uploads_controller.js', > 198 : .write(req.file.path, (err) => { > 199 : if(err) { > 200 :...
Perhaps, provide > APP_BIND=127.0.0.1 in .env and simply > app.listen(process.env.APP_PORT, () => { becomes > app.listen(process.env.APP_PORT, process.env.APP_BIND, () => {
There's also a http link for resending verification email but this can be a relative path too. 
You just need UTF-8 locale installed. (Although zplug could check the locale and stop using fancy characters if it's not set as UTF-8.) https://stackoverflow.com/questions/28405902/how-to-set-the-locale-inside-a-ubuntu-docker-container - Install locale package. `apt install...
What is the implication of applying the `-u` fix as 2 posts above? That fixes it for me. Without a fix, whenever I log in, I always get prompted with...
This happens when you run zplug via ssh command as well. > ssh $server 'zsh -ci "zplug install"' This yields, > [zplug] WARNING: pipe syntax is deprecated! Please use 'on'...
What is the reason for keeping Promise version implemented? Are people OK using callback on every query or add their own promise wrapper? I don't like the idea of delegating...
Confirming the original post fixes the X-Postal-Threat header. This needs merged or the scanning makes no sense.
How do I fix this if I don't want to use the host mode in docker? Can AdGuard Home not take IP from HTTP header from trusted reverse proxy by...
No, I meant the generally used `X-Forwarded-For` header. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For I have a reverse proxy in front of AdGuard Home, which can send the client's real IP through that header and...