Caddy – Open-source web server with automatic HTTPS
caddyserver.com
Caddy – Open-source web server with automatic HTTPS
1–10 of 132 posts
Re: Caddy – Open-source web server with automatic HTTPS
#2Re: Caddy – Open-source web server with automatic HTTPS
#3Re: Caddy – Open-source web server with automatic HTTPS
#4It’s so much nicer to configure compared to Nginx.
No plugins needed for automatic TLS certs – it’s bulilt-in.
And it’s written in a memory-safe language – Go. Which also means a single static binary to deploy.
I can warmly recommend it.
Re: Caddy – Open-source web server with automatic HTTPS
#5Re: Caddy – Open-source web server with automatic HTTPS
#6I love Caddy! It’s so much nicer to configure compared to Nginx. No plugins needed for automatic TLS certs – it’s bulilt-in. And it’s written in a memory-safe language – Go. Which also means a single static binary to deploy. I can warmly recommend it.
Re: Caddy – Open-source web server with automatic HTTPS
#7Re: Caddy – Open-source web server with automatic HTTPS
#8I love Caddy! It’s so much nicer to configure compared to Nginx. No plugins needed for automatic TLS certs – it’s bulilt-in. And it’s written in a memory-safe language – Go. Which also means a single static binary to deploy. I can warmly recommend it.
Go is not memory safe, not sure where you got that idea. Go programs can absolutely succumb to nil pointer references, memory leaks, etc.
If you have a Go program where user input can be executed as code (no cgo, no unsafe), I'd love to see it.
Re: Caddy – Open-source web server with automatic HTTPS
#9Re: Caddy – Open-source web server with automatic HTTPS
#10I love Caddy! It’s so much nicer to configure compared to Nginx. No plugins needed for automatic TLS certs – it’s bulilt-in. And it’s written in a memory-safe language – Go. Which also means a single static binary to deploy. I can warmly recommend it.
Go is not memory safe, not sure where you got that idea. Go programs can absolutely succumb to nil pointer references, memory leaks, etc.
... But no, Go isn't memory safe, insofar data races can cause memory corruption.