Software Alternatives & Reviews

Caddy

The HTTP/2 Web Server with Automatic HTTPS

Caddy Reviews and details

Screenshots and images

  • Caddy Landing page
    Landing page //
    2022-07-22

Badges

Promote Caddy. You can add any of these badges on your website.
SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Videos

Getting started with Caddy the HTTPS Web Server from scratch

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Caddy and what they use it for.
  • How to securely reverse-proxy ASP.NET Core web apps
    However, it's very unlikely that .NET developers will directly expose their Kestrel-based web apps to the internet. Typically, we use other popular web servers like Nginx, Traefik, and Caddy to act as a reverse-proxy in front of Kestrel for various reasons:. - Source: dev.to / about 2 months ago
  • Show HN: Nano-web, a low latency one binary webserver designed for serving SPAs
    Caddy [1] is a single binary. It is not minimal, but the size difference is barely noticeable. serve also comes to mind. If you have node installed, `npx serve .` does exactly that. There are a few go projects that fit your description, none of them very popular, probably because they end up being a 20-line wrapper around http frameworks just like this one. [1] https://caddyserver.com/. - Source: Hacker News / 24 days ago
  • I Deployed My Own Cute Lil’ Private Internet (a.k.a. VPC)
    Each app’s front end is built with Qwik and uses Tailwind for styling. The server-side is powered by Qwik City (Qwik’s official meta-framework) and runs on Node.js hosted on a shared Linode VPS. The apps also use PM2 for process management and Caddy as a reverse proxy and SSL provisioner. The data is stored in a PostgreSQL database that also runs on a shared Linode VPS. The apps interact with the database using... - Source: dev.to / about 1 month ago
  • Automatic SSL Solution for SaaS/MicroSaaS Applications with Caddy, Node.js and Docker
    So I dug a little deeper and came across this gem: Caddy. Caddy is this fantastic, extensible, cross-platform, open-source web server that's written in Go. The best part? It comes with automatic HTTPS. It basically condenses all the work our scripts and manual maintenance were doing into just 4-5 lines of config. So, stick around and I'll walk you through how to set up an automatic SSL solution with Caddy, Docker... - Source: dev.to / about 2 months ago
  • Cheapest ECS Fargate Service with HTTPS
    Let's use Caddy which can act as reverse-proxy with automatic HTTPS coverage. - Source: dev.to / about 2 months ago
  • Freenginx.org
    One of the most heavily used Russian software projects on the internet https://www.nginx.com/blog/do-svidaniya-igor-thank-you-for-nginx/ but it's only marginally more modern than Apache httpd. In light of recently announced nginx memory-safety vulnerabilities I'd suggest migrating to Caddy https://caddyserver.com/. - Source: Hacker News / 2 months ago
  • Freenginx.org
    Maybe take a look at Caddy (https://caddyserver.com/). - Source: Hacker News / 2 months ago
  • AI for Web Devs: Deploying Your AI App to Production
    My preferred solution is using Caddy. This will resolve the networking issues, work as a great reverse proxy, and takes care of the whole SSL process for us. We can follow the install instructions from their documentation and run these five commands:. - Source: dev.to / 2 months ago
  • You Can't Follow Me
    I empathize with the author and found the post to be a interesting and concrete example of what it's _actually like_ to try to publish a blog to Mastodon, which is something that I have thought about and read about in abstract. So, thank you sir for writing this up. One thing to consider would be to try to use Caddy [0], or a tool like localias [1], as a local https proxy. You might be able to run both the... - Source: Hacker News / 3 months ago
  • How tf does Docker Networking even work?!😵‍💫
    Docker networking usually stops on your machine. If you want to expose your apps to the internet you can either use a reverse-proxy like Caddy or a reverse-tunneling tool like ngrok or Livecycle. Tools like caddy are great for production-ready and deployed apps, while something like Livecycle is more for a prototyping/collaboration use-case. While this is of course not necessary, at some point you will have to... - Source: dev.to / 4 months ago
  • How I use Nix in my Elm projects
    When I run nix-shell at the root of the project it puts me in a Nix shell that contains, among other programs, caddy and shellcheck. Notice that in the shellHook I add the project's shell scripts to the PATH. So once I'm in the Nix shell I can, among other things:. - Source: dev.to / 4 months ago
  • New FrankenPHP feature: package your PHP apps as standalone, self-executable binaries
    Fun fact, the website is "dynamically static", it's just markdown files being processed and rendered by Caddy itself using https://caddyserver.com/docs/caddyfile/directives/templates. It's also how the https://caddyserver.com/ is built as well. Also includes syntax highlighting for Caddyfile config, using a library called Chroma; I wrote the Caddyfile lexer myself a while back! I think it's pretty neat that Caddy... Source: 4 months ago
  • A Guide To Self-Hosting Web Apps On Ubuntu Servers
    Caddy is a web server like nginx. The biggest advandage of Caddy over nginx is, that it handles HTTPS automatically. You can find the script to install Caddy in their documentation. - Source: dev.to / 5 months ago
  • static-server: an HTTP server in Go for static content
    Https://caddyserver.com/ is implemented in Go, production-ready, and easy to setup with a one-liner (though personally I would use official binaries or compile from source rather than use the builds from a distro package manager). - Source: Hacker News / 7 months ago
  • Show HN: Deploying subdomain-based routing like github.io
    Same for Caddy which is even easier than nginx https://caddyserver.com/. - Source: Hacker News / 7 months ago
  • Nginx Unit – Universal web app server
    Nope that's https://caddyserver.com/, which also improves on nginx in a number of other ways. Honestly when I saw this post on the top of HN I thought I'd time-warped back to 2013. There is a better choice today. It's called Caddy. - Source: Hacker News / 7 months ago
  • Custom domain for SaaS - How to integrate
    While looking for a perfect solution, I found Caddy. It is a web server that can automatically manage TLS certificates on our behalf. While I was diving into Caddy's docs, I finally understood that this was the needed solution I was looking for🤩. For custom domain support in our SaaS, we need to configure Caddy to serve as a reverse proxy. A reverse proxy receives a request and forwards it to a different backend... Source: 7 months ago
  • How do you solve custom domain HTTPS support in your SaaS products?
    (Obviously biased towards us, but also backed up by links to their docs for each point) Finally, you can build and self-host your own service to do this if you want. I'd recommend https://caddyserver.com for it if you'd like to go that route. It will handle a lot for you, and is very well designed - we use a customised version of it under the hood. That said, it's still something you'll need to host, sort out... - Source: Hacker News / 8 months ago
  • Where do you get/setup certificates from for your https/ssl?
    Caddy where possible, and acme.sh or lego where not. Source: 10 months ago
  • Leaking Bitwarden's Vault with a Nginx vulnerability
    Caddy has been my default choice recently: https://caddyserver.com Among other things, it features automatic TLS via ACME and dead-simple configuration for my most common use cases: namely, serving a directory of static files and reverse-proxying to an app server. I'm also a fan of Traefik but it's strictly a reverse proxy, there's not even built-in support for serving static files. But it's great if you have e.g.... - Source: Hacker News / 10 months ago
  • acme.sh runs arbitrary commands from a remote server · Issue #4659 · acmesh-official/acme.sh
    Also I thought the original submitter looked familiar, and yep it's the lead developer for caddy, an excellent alternative to nginx. Nice to see that he's so security conscious. Source: 10 months ago

External sources with reviews and comparisons of Caddy

Top Linux Web Servers: Pros and Cons
Now that we know their advantages and disadvantages, which web server is the best? The answer depends on your use case. Nginx is a very fast and powerful option, Apache is a great general-purpose web server, while LiteSpeed represents a premium alternative. Caddy works great if you need simplicity, while Lighthttpd works best when resources are low.

Do you know an article comparing Caddy to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Generic Caddy discussion

Log in or Post with
  1. User avatar
    Oorja
    · 4 months ago
    · Reply

    I've been using Caddy for a while now. Simple and reliable.

This is an informative page about Caddy. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.