AJ ONeal
AJ ONeal
Don't get the dev site flagged by browser block lists as spam: ```text dev.example.com { ... header { Link "; rel=\"canonical\"" X-Robots-Tag noindex } } ```
Also need xcaddy and how to use tls plugins. ```sh caddy run --envfile .env.secret --config ./Caddyfile ``` ```Caddyfile example.com { # ... tls { dns duckdns {env.DUCKDNS_API_TOKEN} } } ```...
I think that the package format changed between 7.3 and 7.4. That's the worst, because I really don't want to have conditionals between installer versions. People just don't treat Releases...
I think it's basically to replace `file_server` with `try_files` ```Caddyfile localhost { # handle API requests handle /api/* { reverse_proxy localhost:3000 } # handle static assets handle_path /assets/* { rewrite...
Also, how to host a single file: ```Caddyfile handle /thing { rewrite * ./thing.txt root * ./build/ file_server } # or handle /* { rewrite /thing ./things/thing-1.html root * ./build/...
@illtellyoulater It looks like you're running this on Linux? I think it's fine to use `enable-linger`, but I also think a system service might be more appropriate for your use...
Hi @virzak, Thanks for looking into this. I'm now available to focus on Webi during the next 2-3 weeks. If you're also available, I'll have a quick turn around time...
It looks like what you have here is simply creating a container, copying a curl binary into it, and then running webi on the fresh system to see if it...
Try installing 7.3 instead of latest / 7.4
We have two independent issues here: - `sed` illegal instruction - NerdFont installer is old ## `sed` Illegal Instruction @ThinkByDesign Seeing that `sed` has illegal instructions makes me think that...