caddy/README.md

159 lines
7.9 KiB
Markdown
Raw Normal View History

<p align="center">
<a href="https://caddyserver.com"><img src="https://cloud.githubusercontent.com/assets/1128849/25305033/12916fce-2731-11e7-86ec-580d4d31cb16.png" alt="Caddy" width="400"></a>
</p>
2017-05-03 01:02:25 +08:00
<h3 align="center">Every Site on HTTPS <!-- Serve Confidently --></h3>
<p align="center">Caddy is a general-purpose HTTP/2 web server that serves HTTPS by default.</p>
<p align="center">
<a href="https://travis-ci.org/mholt/caddy"><img src="https://img.shields.io/travis/mholt/caddy.svg?label=linux+build"></a>
<a href="https://ci.appveyor.com/project/mholt/caddy"><img src="https://img.shields.io/appveyor/ci/mholt/caddy.svg?label=windows+build"></a>
<a href="https://godoc.org/github.com/mholt/caddy"><img src="https://img.shields.io/badge/godoc-reference-blue.svg"></a>
<a href="https://goreportcard.com/report/mholt/caddy"><img src="https://goreportcard.com/badge/github.com/mholt/caddy"></a>
<br>
<a href="https://twitter.com/caddyserver" title="@caddyserver on Twitter"><img src="https://img.shields.io/badge/twitter-@caddyserver-55acee.svg" alt="@caddyserver on Twitter"></a>
2017-04-24 02:51:08 +08:00
<a href="https://caddy.community" title="Caddy Forum"><img src="https://img.shields.io/badge/community-forum-ff69b4.svg" alt="Caddy Forum"></a>
<a href="https://sourcegraph.com/github.com/mholt/caddy?badge" title="Caddy on Sourcegraph"><img src="https://sourcegraph.com/github.com/mholt/caddy/-/badge.svg" alt="Caddy on Sourcegraph"></a>
</p>
<p align="center">
<a href="https://caddyserver.com/download">Download</a> ·
<a href="https://caddyserver.com/docs">Documentation</a> ·
2017-04-24 02:51:08 +08:00
<a href="https://caddy.community">Community</a>
</p>
---
Caddy is fast, easy to use, and makes you more productive.
Available for Windows, Mac, Linux, BSD, Solaris, and [Android](https://github.com/mholt/caddy/wiki/Running-Caddy-on-Android).
2015-01-14 04:24:43 +08:00
2016-06-22 01:28:38 +08:00
## Menu
2015-01-22 10:16:31 +08:00
2016-06-22 01:28:38 +08:00
- [Features](#features)
- [Install](#install)
2015-04-27 23:53:08 +08:00
- [Quick Start](#quick-start)
2016-06-22 01:28:38 +08:00
- [Running in Production](#running-in-production)
2015-04-27 23:53:08 +08:00
- [Contributing](#contributing)
- [Donors](#donors)
2015-04-27 23:53:08 +08:00
- [About the Project](#about-the-project)
2016-06-22 01:28:38 +08:00
## Features
2015-04-27 23:53:08 +08:00
- **Easy configuration** with the Caddyfile
- **Automatic HTTPS** on by default (via [Let's Encrypt](https://letsencrypt.org))
- **HTTP/2** by default
- **Virtual hosting** so multiple sites just work
2016-06-22 01:28:38 +08:00
- Experimental **QUIC support** for those that like speed
- TLS session ticket **key rotation** for more secure connections
- **Extensible with plugins** because a convenient web server is a helpful one
2016-06-22 01:28:38 +08:00
- **Runs anywhere** with **no external dependencies** (not even libc)
2015-04-27 23:53:08 +08:00
There's way more, too! [See all features built into Caddy.](https://caddyserver.com/features) On top of all those, Caddy does even more with plugins: choose which plugins you want at [download](https://caddyserver.com/download).
2015-04-27 23:53:08 +08:00
## Install
2015-04-27 23:53:08 +08:00
Caddy binaries have no dependencies and are available for every platform. Get Caddy any one of these ways:
2015-05-01 22:55:34 +08:00
2016-06-22 09:21:45 +08:00
- **[Download page](https://caddyserver.com/download)** allows you to
customize your build in the browser
- **[Latest release](https://github.com/mholt/caddy/releases/latest)** for
pre-built, vanilla binaries
- **go get** to build from source: `go get github.com/mholt/caddy/caddy` (requires Go 1.8 or newer)
Then make sure the `caddy` binary is in your PATH.
## Quick Start
To serve static files from the current working directory, run:
```
caddy
```
2015-01-14 04:24:43 +08:00
Caddy's default port is 2015, so open your browser to [http://localhost:2015](http://localhost:2015).
2015-01-14 04:24:43 +08:00
### Go from 0 to HTTPS in 5 seconds
If the `caddy` binary has permission to bind to low ports and your domain name's DNS records point to the machine you're on:
```
caddy -host example.com
```
This command serves static files from the current directory over HTTPS. Certificates are automatically obtained and renewed for you!
### Customizing your site
To customize how your site is served, create a file named Caddyfile by your site and paste this into it:
2015-01-14 04:24:43 +08:00
2016-06-22 01:28:38 +08:00
```plain
2015-04-27 23:53:08 +08:00
localhost
push
2015-04-27 23:53:08 +08:00
browse
websocket /echo cat
2016-06-22 01:28:38 +08:00
ext .html
log /var/log/access.log
proxy /api 127.0.0.1:7005
2015-01-14 04:24:43 +08:00
header /api Access-Control-Allow-Origin *
```
When you run `caddy` in that directory, it will automatically find and use that Caddyfile.
2015-04-27 23:53:08 +08:00
This simple file enables server push (via Link headers), allows directory browsing (for folders without an index file), hosts a WebSocket echo server at /echo, serves clean URLs, logs requests to an access log, proxies all API requests to a backend on port 7005, and adds the coveted `Access-Control-Allow-Origin: *` header for all responses from the 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
### Doing more with Caddy
2015-04-27 23:53:08 +08:00
To host multiple sites and do more with the Caddyfile, please see the [Caddyfile tutorial](https://caddyserver.com/tutorial/caddyfile).
2015-04-27 23:53:08 +08:00
Sites with qualifying hostnames are served over [HTTPS by default](https://caddyserver.com/docs/automatic-https).
2015-04-27 23:53:08 +08:00
Caddy has a command line interface. Run `caddy -h` to view basic help or see the [CLI documentation](https://caddyserver.com/docs/cli) for details.
2015-11-04 03:39:25 +08:00
2016-06-22 01:28:38 +08:00
## Running in Production
2015-11-04 03:39:25 +08:00
Caddy is production-ready if you find it to be a good fit for your site and workflow.
2015-11-04 03:39:25 +08:00
**Running as root:** We advise against this. You can still listen on ports < 1024 on Linux using setcap like so: `sudo setcap cap_net_bind_service=+ep ./caddy`
2015-11-04 03:39:25 +08:00
The Caddy project does not officially maintain any system-specific integrations nor suggest how to administer your own system. But your download file includes [unofficial resources](https://github.com/mholt/caddy/tree/master/dist/init) contributed by the community that you may find helpful for running Caddy in production.
How you choose to run Caddy is up to you. Many users are satisfied with `nohup caddy &`. Others use `screen`. Users who need Caddy to come back up after reboots either do so in the script that caused the reboot, add a command to an init script, or configure a service with their OS.
2015-04-27 23:53:08 +08:00
2017-05-20 05:25:16 +08:00
If you have questions or concerns about Caddy' underlying crypto implementations, consult Go's [crypto packages](https://golang.org/pkg/crypto), starting with their documentation, then issues, then the code itself; as Caddy uses mainly those libraries.
2015-04-27 23:53:08 +08:00
## Contributing
**[Join our forum](https://caddy.community) where you can chat with other Caddy users and developers!** To get familiar with the code base, try [Caddy code search on Sourcegraph](https://sourcegraph.com/github.com/mholt/caddy/-/search)!
2015-05-07 06:39:58 +08:00
Please see our [contributing guidelines](https://github.com/mholt/caddy/blob/master/.github/CONTRIBUTING.md) for instructions. If you want to write a plugin, check out the [developer wiki](https://github.com/mholt/caddy/wiki).
2016-05-27 23:15:06 +08:00
2017-04-24 02:51:08 +08:00
We use GitHub issues and pull requests only for discussing bug reports and the development of specific changes. We welcome all other topics on the [forum](https://caddy.community)!
2015-04-27 23:53:08 +08:00
If you want to contribute to the documentation, please submit pull requests to [caddyserver/website](https://github.com/caddyserver/website).
2016-07-19 21:41:54 +08:00
2015-04-27 23:53:08 +08:00
Thanks for making Caddy -- and the Web -- better!
## Donors
- [DigitalOcean](https://m.do.co/c/6d7bdafccf96) is hosting the Caddy project.
- [DNSimple](https://dnsimple.link/resolving-caddy) provides DNS services for Caddy's sites.
- [DNS Spy](https://dnsspy.io) keeps an eye on Caddy's DNS properties.
We thank them for their services. **If you want to help keep Caddy free, please [become a sponsor](https://caddyserver.com/pricing)!**
2015-04-27 23:53:08 +08:00
2015-01-14 06:45:08 +08:00
2016-06-22 01:28:38 +08:00
## About the Project
2015-03-04 02:14:36 +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/), which provides a pleasant mixture of features from each of them.
**The name "Caddy":** The name of the software is "Caddy", not "Caddy Server" or "CaddyServer". Please call it "Caddy" or, if you wish to clarify, "the Caddy web server". See [brand guidelines](https://caddyserver.com/brand).
2015-03-04 02:14:36 +08:00
2016-06-22 01:28:38 +08:00
*Author on Twitter: [@mholt6](https://twitter.com/mholt6)*