Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
I guess it depends on how you got caddy to begin with. If you used xcaddy, you have to update caddy the same way (recompile via
xcaddy
) otherwise you'll get the default binary which has no misc modules by default, which kinda sounds like what's happened but who knows for sure.If you're feeling daring, you can try to compile
caddy
yourself withxcaddy
, it's super easy.Save your
Caddyfile
's (ultra important), and uninstallcaddy
. Installxcaddy
(apt install xcaddy [orgo install github.com/caddyserver/xcaddy/cmd/xcaddy@latest
]). Then usexcaddy
to compilecaddy
with the modules you need;Caddy will build and be spit out in
/tmp/caddy
. Move it to/home/username/.local/bin
or something, and make sure that directory is in your path. Don't forget tochmod +x caddy
.Run caddy like normal and see if this fixes your issue. If not, you'll likely have to try and older version of caddy (uninstall and specifically install the previous version or if you can't, use
xcaddy
withCADDY_VERSION
to build a specific version with your modules), or wait until they push a fix for whatever they broke.That's what I did for Cloudflare and it works well.