Skip to content

Commit

Permalink
Change quickstart message
Browse files Browse the repository at this point in the history
  • Loading branch information
hlandau committed Dec 6, 2015
1 parent 220b4a9 commit be55958
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/acmetool/quickstart.go
Expand Up @@ -463,9 +463,9 @@ func promptServerURL() string {
Title: "Select ACME Server",
Body: `Please choose an ACME server from which to request certificates. Your principal choices are the Let's Encrypt Live Server, and the Let's Encrypt Staging Server.
Until Let's Encrypt enters open beta, you can only use the Let's Encrypt Live Server if you have been invited to the closed beta, and you will only be able to request certificates for the hostnames you specified in your beta application.
You can use the Let's Encrypt Live Server to get real certificates.
The Let's Encrypt Staging Server can be used by anyone but does not issue publically trusted certificates. It is useful for development purposes.`,
The Let's Encrypt Staging Server does not issue publically trusted certificates. It is useful for development purposes, as it has far higher rate limits than the live server.`,
ResponseType: interaction.RTSelect,
Options: []interaction.Option{
{
Expand Down
2 changes: 1 addition & 1 deletion responder/http.go
Expand Up @@ -191,7 +191,7 @@ func (s *httpResponder) startListener(addr string) error {

l, err := net.Listen("tcp", svr.Addr)
if err != nil {
log.Noticee(err, "failed to listen on ", svr.Addr)
log.Debuge(err, "failed to listen on ", svr.Addr)
return err
}

Expand Down

0 comments on commit be55958

Please sign in to comment.