2015-04-27 23:53:08 +08:00
[![Caddy ](https://caddyserver.com/resources/images/caddy-boxed.png )](https://caddyserver.com)
2015-01-14 04:24:43 +08:00
2016-05-27 23:15:06 +08:00
[![community ](https://img.shields.io/badge/community-forum-ff69b4.svg?style=flat-square )](https://forum.caddyserver.com)
2015-11-25 02:17:34 +08:00
[![Documentation ](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square )](https://godoc.org/github.com/mholt/caddy)
[![Linux Build Status ](https://img.shields.io/travis/mholt/caddy.svg?style=flat-square&label=linux+build )](https://travis-ci.org/mholt/caddy)
[![Windows Build Status ](https://img.shields.io/appveyor/ci/mholt/caddy.svg?style=flat-square&label=windows+build )](https://ci.appveyor.com/project/mholt/caddy)
2015-01-14 04:24:43 +08:00
2015-11-25 02:17:34 +08:00
Caddy is a lightweight, general-purpose web server for Windows, Mac, Linux, BSD
and [Android ](https://github.com/mholt/caddy/wiki/Running-Caddy-on-Android ).
It is a capable alternative to other popular and easy to use web servers.
([@caddyserver](https://twitter.com/caddyserver) on Twitter)
2015-01-14 04:24:43 +08:00
2015-11-25 02:17:34 +08:00
The most notable features are HTTP/2, [Let's Encrypt ](https://letsencrypt.org )
support, Virtual Hosts, TLS + SNI, and easy configuration with a
[Caddyfile ](https://caddyserver.com/docs/caddyfile ). In development, you usually
put one Caddyfile with each site. In production, Caddy serves HTTPS by default
and manages all cryptographic assets for you.
2015-01-22 10:16:31 +08:00
2015-11-25 02:17:34 +08:00
[Download ](https://github.com/mholt/caddy/releases ) ·
[User Guide ](https://caddyserver.com/docs )
2015-01-14 04:24:43 +08:00
2015-01-22 10:16:31 +08:00
2015-01-14 04:24:43 +08:00
2015-04-27 23:53:08 +08:00
### Menu
- [Getting Caddy ](#getting-caddy )
- [Quick Start ](#quick-start )
2015-11-04 03:39:25 +08:00
- [Running from Source ](#running-from-source )
2015-04-27 23:53:08 +08:00
- [Contributing ](#contributing )
- [About the Project ](#about-the-project )
## Getting Caddy
2015-04-29 02:07:37 +08:00
Caddy binaries have no dependencies and are available for nearly every platform.
2015-04-27 23:53:08 +08:00
[Latest release ](https://github.com/mholt/caddy/releases/latest )
2015-05-01 22:55:34 +08:00
2015-04-27 23:53:08 +08:00
## Quick Start
2015-01-14 04:24:43 +08:00
2015-11-25 02:17:34 +08:00
The website has [full documentation ](https://caddyserver.com/docs ) but this will
get you started in about 30 seconds:
2015-01-14 04:24:43 +08:00
2015-04-27 23:53:08 +08:00
Place a file named "Caddyfile" with your site. Paste this into it and save:
2015-01-14 04:24:43 +08:00
```
2015-04-27 23:53:08 +08:00
localhost
2015-01-14 04:24:43 +08:00
gzip
2015-04-27 23:53:08 +08:00
browse
2015-01-14 04:24:43 +08:00
ext .html
2015-04-27 23:53:08 +08:00
websocket /echo cat
log ../access.log
2015-01-14 04:24:43 +08:00
header /api Access-Control-Allow-Origin *
```
2015-11-25 02:17:34 +08:00
Run `caddy` from that directory, and it will automatically use that Caddyfile to
configure itself.
2015-04-27 23:53:08 +08:00
2015-11-25 02:17:34 +08:00
That simple file enables compression, allows directory browsing (for folders
without an index file), serves clean URLs, hosts a WebSocket echo server at
/echo, logs requests to access.log, and adds the coveted
`Access-Control-Allow-Origin: *` header for all responses from some API.
2015-04-27 23:53:08 +08:00
Wow! Caddy can do a lot with just a few lines.
2015-01-14 04:24:43 +08:00
2015-11-04 03:39:25 +08:00
2015-04-27 23:53:08 +08:00
#### Defining multiple sites
You can run multiple sites from the same Caddyfile, too:
2015-01-14 04:24:43 +08:00
```
2015-11-04 03:39:25 +08:00
site1.com {
# ...
2015-01-14 04:24:43 +08:00
}
2015-11-04 03:39:25 +08:00
site2.com, sub.site2.com {
2015-04-27 23:53:08 +08:00
# ...
2015-01-14 04:24:43 +08:00
}
```
2015-11-25 02:17:34 +08:00
Note that all these sites will automatically be served over HTTPS using Let's
Encrypt as the CA. Caddy will manage the certificates (including renewals) for
you. You don't even have to think about it.
2015-04-27 23:53:08 +08:00
2015-11-25 02:17:34 +08:00
For more documentation, please view [the website ](https://caddyserver.com/docs ).
You may also be interested in the [developer guide]
(https://github.com/mholt/caddy/wiki) on this project's GitHub wiki.
2015-04-27 23:53:08 +08:00
2015-11-04 03:39:25 +08:00
## Running from Source
2016-05-05 22:18:00 +08:00
Note: You will need ** [Go 1.6 ](https://golang.org/dl/ )** or newer (required for
transparent automatic HTTP/2 support and to take advantage of performance improvements
in the TLS and crypto libraries).
2015-11-04 03:39:25 +08:00
1. `$ go get github.com/mholt/caddy`
2. `cd` into your website's directory
3. Run `caddy` (assumes `$GOPATH/bin` is in your `$PATH` )
2016-03-17 01:45:26 +08:00
If you're tinkering, you can also use `./build.bash && ./ecaddy` .
2015-11-04 03:39:25 +08:00
2015-11-25 02:17:34 +08:00
By default, Caddy serves the current directory at
[localhost:2015 ](http://localhost:2015 ). You can place a Caddyfile to configure
Caddy for serving your site.
2015-11-04 03:39:25 +08:00
2015-11-25 02:17:34 +08:00
Caddy accepts some flags from the command line. Run `caddy -h` to view the help
2016-03-17 01:45:26 +08:00
for flags or see the [CLI documentation ](https://caddyserver.com/docs/cli ).
2015-11-04 03:39:25 +08:00
2015-11-25 02:17:34 +08:00
**Running as root:** We advise against this; use setcap instead, like so:
`setcap cap_net_bind_service=+ep ./caddy` This will allow you to listen on
ports < 1024 like 80 and 443 .
2015-11-04 03:39:25 +08:00
#### Docker Container
Caddy is available as a Docker container from any of these sources:
2015-12-04 23:20:56 +08:00
- [abiosoft/caddy ](https://hub.docker.com/r/abiosoft/caddy/ )
- [darron/caddy ](https://hub.docker.com/r/darron/caddy/ )
- [joshix/caddy ](https://hub.docker.com/r/joshix/caddy/ )
- [jumanjiman/caddy ](https://hub.docker.com/r/jumanjiman/caddy/ )
- [zenithar/nano-caddy ](https://hub.docker.com/r/zenithar/nano-caddy/ )
2016-04-05 15:11:55 +08:00
- [zzrot/alpine-caddy ](https://hub.docker.com/r/zzrot/alpine-caddy/ )
2015-11-04 03:39:25 +08:00
#### 3rd-party dependencies
2015-11-25 03:16:05 +08:00
Although Caddy's binaries are completely static, Caddy relies on some excellent
libraries. [Godoc.org ](https://godoc.org/github.com/mholt/caddy ) shows the
2015-11-25 02:17:34 +08:00
packages that each Caddy package imports.
2015-11-04 03:39:25 +08:00
2015-04-27 23:53:08 +08:00
## Contributing
2016-05-27 23:15:06 +08:00
**[Join our community](https://forum.caddyserver.com) where you can chat with other Caddy users and developers!**
2015-05-07 06:39:58 +08:00
2016-05-27 23:15:06 +08:00
Please see our [contributing guidelines ](https://github.com/mholt/caddy/blob/master/CONTRIBUTING.md ).
We use GitHub issues and pull requests *only* for bug reports and discussing specific changes to Caddy. We welcome all other topics on the [forum ](https://forum.caddyserver.com )!
2015-04-27 23:53:08 +08:00
Thanks for making Caddy -- and the Web -- better!
2015-11-25 03:16:05 +08:00
Special thanks to
2016-05-15 20:25:59 +08:00
[![DigitalOcean ](https://i.imgur.com/sfGr0eY.png )](https://www.digitalocean.com)
2015-11-25 02:17:34 +08:00
for hosting the Caddy project.
2015-08-05 08:32:27 +08:00
2015-04-27 23:53:08 +08:00
2015-01-14 06:45:08 +08:00
2015-04-27 23:53:08 +08:00
## About the project
2015-03-04 02:14:36 +08:00
2015-11-25 03:16:05 +08:00
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 [spark ](https://github.com/rif/spark ),
[nginx ](https://github.com/nginx/nginx ), lighttpd,
[Websocketd ](https://github.com/joewalnes/websocketd )
and [Vagrant ](https://www.vagrantup.com/ ),
2015-11-25 03:04:15 +08:00
which provides a pleasant mixture of features from each of them.
2015-03-04 02:14:36 +08:00
2015-04-27 23:53:08 +08:00
*Twitter: [@mholt6 ](https://twitter.com/mholt6 )*