1
1
Fork 0
mirror of https://git.sr.ht/~emersion/tlstunnel synced 2024-05-11 05:26:22 +02:00

Change `tls ca` to `tls acme_ca`

Make it clear it's about ACME.
This commit is contained in:
Simon Ser 2020-09-09 15:08:50 +02:00
parent e3ac31414f
commit e2f4dddfef
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

View File

@ -120,7 +120,7 @@ func parseBackend(backend *Backend, d *Directive) error {
func parseTLS(srv *Server, d *Directive) error {
for _, child := range d.Children {
switch child.Name {
case "ca":
case "acme_ca":
var caURL string
if err := child.ParseParams(&caURL); err != nil {
return err