Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
caddy
Commits
c827a71d
Commit
c827a71d
authored
Feb 25, 2016
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 0.8.2
parent
2ecc8370
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
7 deletions
+18
-7
dist/CHANGES.txt
dist/CHANGES.txt
+8
-4
dist/README.txt
dist/README.txt
+8
-1
main.go
main.go
+2
-2
No files found.
dist/CHANGES.txt
View file @
c827a71d
CHANGES
CHANGES
<master>
0.8.2 (February 25, 2016)
- On-demand TLS can obtain certificates during handshake
- On-demand TLS can obtain certificates during handshake
s
- 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
...
...
dist/README.txt
View file @
c827a71d
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!
...
...
main.go
View file @
c827a71d
...
@@ -28,7 +28,7 @@ var (
...
@@ -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() {
...
@@ -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"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment