mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-20 15:49:29 +08:00
Version 0.8.2
This commit is contained in:
parent
2ecc837020
commit
c827a71d5d
12
dist/CHANGES.txt
vendored
12
dist/CHANGES.txt
vendored
|
@ -1,16 +1,20 @@
|
||||||
CHANGES
|
CHANGES
|
||||||
|
|
||||||
<master>
|
0.8.2 (February 25, 2016)
|
||||||
- On-demand TLS can obtain certificates during handshake
|
- On-demand TLS can obtain certificates during handshakes
|
||||||
- Built with Go 1.6
|
- Built with Go 1.6
|
||||||
- Process log (-log) is rotated when it gets large
|
- 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
|
- fastcgi: Allow scheme prefix before address
|
||||||
- markdown: Support for definition lists
|
- markdown: Support for definition lists
|
||||||
- proxy: Allow proxy to insecure HTTPS backends
|
- proxy: Allow proxy to insecure HTTPS backends
|
||||||
- proxy: Support proxy to unix socket
|
- proxy: Support proxy to unix socket
|
||||||
|
- rewrite: Status code can be 2xx or 4xx
|
||||||
- templates: New .Markdown action to interpret included file as Markdown
|
- templates: New .Markdown action to interpret included file as Markdown
|
||||||
- tls: max_certs setting to set hard limit on-demand TLS
|
- templates: .Truncate now truncates from end of string when length is negative
|
||||||
- tls: load certificates from directory
|
- 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
|
- Multiple bug fixes and internal changes
|
||||||
|
|
||||||
|
|
||||||
|
|
9
dist/README.txt
vendored
9
dist/README.txt
vendored
|
@ -1,16 +1,23 @@
|
||||||
CADDY 0.8.1
|
CADDY 0.8.2
|
||||||
|
|
||||||
Website
|
Website
|
||||||
https://caddyserver.com
|
https://caddyserver.com
|
||||||
|
|
||||||
|
Twitter
|
||||||
@caddyserver
|
@caddyserver
|
||||||
|
|
||||||
Source Code
|
Source Code
|
||||||
https://github.com/mholt/caddy
|
https://github.com/mholt/caddy
|
||||||
|
https://github.com/caddyserver
|
||||||
|
|
||||||
|
|
||||||
For instructions on using Caddy, please see the user guide on the website.
|
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.
|
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
|
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!
|
issue or submit a pull request on GitHub. Your contributions do not go unnoticed!
|
||||||
|
|
||||||
|
|
4
main.go
4
main.go
|
@ -28,7 +28,7 @@ var (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
appName = "Caddy"
|
appName = "Caddy"
|
||||||
appVersion = "0.8.1"
|
appVersion = "0.8.2"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -40,7 +40,7 @@ func init() {
|
||||||
flag.StringVar(&https.DefaultEmail, "email", "", "Default Let's Encrypt account email address")
|
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.DurationVar(&caddy.GracefulTimeout, "grace", 5*time.Second, "Maximum duration of graceful shutdown")
|
||||||
flag.StringVar(&caddy.Host, "host", caddy.DefaultHost, "Default host")
|
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(&logfile, "log", "", "Process log file")
|
||||||
flag.StringVar(&caddy.PidFile, "pidfile", "", "Path to write pid file")
|
flag.StringVar(&caddy.PidFile, "pidfile", "", "Path to write pid file")
|
||||||
flag.StringVar(&caddy.Port, "port", caddy.DefaultPort, "Default port")
|
flag.StringVar(&caddy.Port, "port", caddy.DefaultPort, "Default port")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user