Skip to content

Commit

Permalink
Version 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mholt committed Feb 25, 2016
1 parent 2ecc837 commit c827a71
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
12 changes: 8 additions & 4 deletions dist/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
CHANGES

<master>
- On-demand TLS can obtain certificates during handshake
0.8.2 (February 25, 2016)
- On-demand TLS can obtain certificates during handshakes
- Built with Go 1.6
- Process log (-log) is rotated when it gets large
- Managed certificates get renewed 30 days early instead of just 14
- fastcgi: Allow scheme prefix before address
- markdown: Support for definition lists
- proxy: Allow proxy to insecure HTTPS backends
- proxy: Support proxy to unix socket
- rewrite: Status code can be 2xx or 4xx
- templates: New .Markdown action to interpret included file as Markdown
- tls: max_certs setting to set hard limit on-demand TLS
- tls: load certificates from directory
- templates: .Truncate now truncates from end of string when length is negative
- tls: Set hard limit for certificates obtained with on-demand TLS
- tls: Load certificates from directory
- tls: Add SHA384 cipher suites
- Multiple bug fixes and internal changes


Expand Down
9 changes: 8 additions & 1 deletion dist/README.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
CADDY 0.8.1
CADDY 0.8.2

Website
https://caddyserver.com

Twitter
@caddyserver

Source Code
https://github.com/mholt/caddy
https://github.com/caddyserver


For instructions on using Caddy, please see the user guide on the website.
For a list of what's new in this version, see CHANGES.txt.

Please consider donating to the project if you think it is helpful,
especially if your company is using Caddy. There are also sponsorship
opportunities available!

If you have a question, bug report, or would like to contribute, please open an
issue or submit a pull request on GitHub. Your contributions do not go unnoticed!

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var (

const (
appName = "Caddy"
appVersion = "0.8.1"
appVersion = "0.8.2"
)

func init() {
Expand All @@ -40,7 +40,7 @@ func init() {
flag.StringVar(&https.DefaultEmail, "email", "", "Default Let's Encrypt account email address")
flag.DurationVar(&caddy.GracefulTimeout, "grace", 5*time.Second, "Maximum duration of graceful shutdown")
flag.StringVar(&caddy.Host, "host", caddy.DefaultHost, "Default host")
flag.BoolVar(&caddy.HTTP2, "http2", true, "HTTP/2 support")
flag.BoolVar(&caddy.HTTP2, "http2", true, "Use HTTP/2")
flag.StringVar(&logfile, "log", "", "Process log file")
flag.StringVar(&caddy.PidFile, "pidfile", "", "Path to write pid file")
flag.StringVar(&caddy.Port, "port", caddy.DefaultPort, "Default port")
Expand Down

0 comments on commit c827a71

Please sign in to comment.