Tristan Maat

Results 132 comments of Tristan Maat

There's an [example](https://github.com/nextcloud/docker/tree/master/.examples/docker-compose/insecure/mariadb-cron-redis/apache) that does exactly what you want here. Try the various configurations from there. nginx is an unnecessary middle man here, since you're using the Apache image. If...

~~The access log and error logs are separate if I'm not mistaken.~~ Sorry, I'm blind... You're supposed to see a message like: > *25019 client intended to send too large...

> The thing is, upload via browser is okay, I tested up to 1GB, so it normally can't be that for other clients it isn't working? Is this browser running...

1. nixd actually *evaluates* the code, which makes it very flexible for a wide variety of projects you can do with nix, but makes it pretty configuration heavy, since you...

I just ran into this; I'm fairly sure it's not a bug. This seems to happen when the `package.json` is out of sync with the `package.lock` (this can happen if...

Maybe there needs to be a bit more guidance than just mentioning the variable names for the documentation strategy, since the emacs doc for it isn't very obvious. Perhaps reproduce...

Hrm, this also has the big caveat that it's basically impossible to show diagnostics using rust-analyzer, because it's so incredibly verbose and `eldoc-documentation-compose` lists the signature hints *before* the flymake...

> \# Certain programs are started with `/bin/bash program`, which means if I only have ZSH setup, > \# these programs won't have the correct sessionVariables present > programs.bash.enable =...

Hrm, that does require re-exporting nixpkgs, which I'm not very fond of. It might ultimately be better to set this script up so it can be invoked with `nix run`,...

I'm using: ```elisp (use-package rustic :mode ((rx ".rs" string-end) . rustic-mode) :init (setq rustic-lsp-client 'eglot) :config (require 'smartparens-rust)) ``` I also had that setting in `:config` originally, but pretty quickly...