Browse Source

Fix the example config file

pull/5/head
Rodolphe Breard 6 years ago
parent
commit
04fe98be75
  1. 4
      acmed/acmed_example.toml

4
acmed/acmed_example.toml

@ -17,7 +17,7 @@ name = "http-echo-create"
type = ["challenge-http-01"] type = ["challenge-http-01"]
cmd = "echo" cmd = "echo"
args = ["{{proof}}"] args = ["{{proof}}"]
stdout = "/srv/http/{{current_domain}}/.well-known/acme-challenge/{{file_name}}"
stdout = "/srv/http/{{domain}}/.well-known/acme-challenge/{{file_name}}"
[[hook]] [[hook]]
name = "http-echo-clean" name = "http-echo-clean"
@ -25,7 +25,7 @@ type = ["challenge-http-01-clean"]
cmd = "rm" cmd = "rm"
args = [ args = [
"-f", "-f",
"/srv/http/{{current_domain}}/.well-known/acme-challenge/{{file_name}}"
"/srv/http/{{domain}}/.well-known/acme-challenge/{{file_name}}"
] ]
[[group]] [[group]]

Loading…
Cancel
Save