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
nexedi
caddy
Commits
5b93799a
Commit
5b93799a
authored
Dec 03, 2015
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 0.8.0
parent
fd14f257
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
dist/CHANGES.txt
dist/CHANGES.txt
+3
-3
dist/README.txt
dist/README.txt
+1
-1
main.go
main.go
+2
-2
No files found.
dist/CHANGES.txt
View file @
5b93799a
CHANGES
0.8
beta
-
Let's Encrypt (free, automatic, fully-managed HTTPS for your sites
)
- Graceful restarts (
for POSIX-compatible
systems)
0.8
.0 (December 4, 2015)
-
HTTPS by default via Let's Encrypt (certs & keys are fully managed
)
- Graceful restarts (
on POSIX-compliant
systems)
- Major internal refactoring to allow use of Caddy as library
- New directive 'mime' to customize Content-Type based on file extension
- New -accept flag to accept Let's Encrypt SA without prompt
...
...
dist/README.txt
View file @
5b93799a
CADDY 0.8
beta 4
CADDY 0.8
Website
https://caddyserver.com
...
...
main.go
View file @
5b93799a
...
...
@@ -26,13 +26,13 @@ var (
const
(
appName
=
"Caddy"
appVersion
=
"0.8
beta 4
"
appVersion
=
"0.8"
)
func
init
()
{
caddy
.
TrapSignals
()
flag
.
BoolVar
(
&
letsencrypt
.
Agreed
,
"agree"
,
false
,
"Agree to Let's Encrypt Subscriber Agreement"
)
flag
.
StringVar
(
&
letsencrypt
.
CAUrl
,
"ca"
,
"https://acme-
staging
.api.letsencrypt.org/directory"
,
"Certificate authority ACME server"
)
flag
.
StringVar
(
&
letsencrypt
.
CAUrl
,
"ca"
,
"https://acme-
v01
.api.letsencrypt.org/directory"
,
"Certificate authority ACME server"
)
flag
.
StringVar
(
&
conf
,
"conf"
,
""
,
"Configuration file to use (default="
+
caddy
.
DefaultConfigFile
+
")"
)
flag
.
StringVar
(
&
cpu
,
"cpu"
,
"100%"
,
"CPU cap"
)
flag
.
StringVar
(
&
letsencrypt
.
DefaultEmail
,
"email"
,
""
,
"Default Let's Encrypt account email address"
)
...
...
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