Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS
Go to file
Matthew Holt d00bb87f17 -port flag to override default port
Default port used if none is specified in config
2015-04-28 22:13:00 -06:00
config -port flag to override default port 2015-04-28 22:13:00 -06:00
middleware adding support for fastcgi index files in subdirectories 2015-04-28 13:15:14 -06:00
server Fix for Issue 13: Trouble running in Docker containers (or binding to 0.0.0.0) 2015-04-28 22:31:42 +01:00
.gitignore Ignore automated build script and stuff 2015-04-27 23:20:58 -06:00
CONTRIBUTING.md Fixed link/email in instructions 2015-04-27 10:45:47 -06:00
LICENSE.md Create LICENSE.md 2015-04-27 10:41:32 -06:00
main.go -port flag to override default port 2015-04-28 22:13:00 -06:00
README.md Clarified "no dependencies"; info about 3rd party libraries 2015-04-28 12:07:37 -06:00

Caddy

Documentation

Caddy is a lightweight, general-purpose web server for Windows, Mac, Linux, BSD, and Android. It is a capable alternative to other popular web servers.

The most notable features are HTTP/2, Virtual Hosts, TLS + SNI, and easy configuration with a Caddyfile. Usually, you have one Caddyfile per site. Most directives for the Caddyfile invoke a layer of middleware which can be used in your own Go programs.

Download · User Guide

Menu

Getting Caddy

Caddy binaries have no dependencies and are available for nearly every platform.

Latest release

Running from Source

  1. $ go get github.com/mholt/caddy
  2. cd into your website's directory
  3. Run caddy (assumes $GOPATH/bin is in your $PATH)

If you're tinkering, you can also use go run main.go.

By default, Caddy serves the current directory at localhost:2015. You can place a Caddyfile to configure Caddy for serving your site.

Caddy accepts some flags from the command line. Run caddy -h to view the help for flags.

3rd-party libraries

Although Caddy's binaries are completely static, Caddy relies on some excellent libraries that really make the project possible.

This list may not be comprehensive, but godoc.org will list all packages that any given package imports.

Quick Start

The website has full documentation but this will get you started in about 30 seconds:

Place a file named "Caddyfile" with your site. Paste this into it and save:

localhost

gzip
browse
ext .html
websocket /echo cat
log ../access.log
header /api Access-Control-Allow-Origin *

Run caddy from that directory, and it will automatically use that Caddyfile to configure itself.

That simple file enables compression, allows directory browsing (for folders without an index file), serves clean URLs, hosts an echo server for WebSocket connections at /echo, logs accesses to access.log, and adds the coveted Access-Control-Allow-Origin: * header for all responses from some API.

Wow! Caddy can do a lot with just a few lines.

Defining multiple sites

You can run multiple sites from the same Caddyfile, too:

http://mysite.com,
http://www.mysite.com {
	redir https://mysite.com
}

https://mysite.com {
	tls mysite.crt mysite.key
	# ...
}

Note that the secure host will automatically be served with HTTP/2 if the client supports it.

For more documentation, please view the website. You may also be interested in the developer guide on this project's GitHub wiki.

Contributing

This project gladly accepts contributions. Interested users are encouraged to get involved by opening issues with their ideas, questions, and bug reports. Bug reports should contain clear instructions to reproduce the problem and state expected behavior.

For small tweaks and bug fixes, feel free to submit pull requests at any time. For new features or to change existing behavior, please open an issue first to discuss it and claim it. This prevents overlapping efforts and also keeps the project in-line with its goals.

Thanks for making Caddy -- and the Web -- better!

About the project

Caddy was born out of the need for a "batteries-included" web server that runs anywhere and doesn't have to take its configuration with it. Caddy took inspiration from nginx, lighttpd, Websocketd, and Vagrant, and provides a pleasant mixture of features from each of them.

Twitter: @mholt6