You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.0 KiB

5 years ago
4 years ago
  1. .\" Copyright (c) 2019-2020 Rodolphe Bréard <rodolphe@breard.tf>
  2. .\"
  3. .\" Copying and distribution of this file, with or without modification,
  4. .\" are permitted in any medium without royalty provided the copyright
  5. .\" notice and this notice are preserved. This file is offered as-is,
  6. .\" without any warranty.
  7. .Dd June 12, 2020
  8. .Dt ACMED 8
  9. .Os
  10. .Sh NAME
  11. .Nm acmed
  12. .Nd ACME client daemon
  13. .Sh SYNOPSIS
  14. .Nm
  15. .Op Fl c|--config Ar FILE
  16. .Op Fl f|--foreground
  17. .Op Fl h|--help
  18. .Op Fl -log-stderr
  19. .Op Fl -log-syslog
  20. .Op Fl -log-level Ar LEVEL
  21. .Op Fl -pid-file Ar FILE
  22. .Op Fl -root-cert Ar FILE
  23. .Op Fl V|--version
  24. .Sh DESCRIPTION
  25. .Nm
  26. is an Automatic Certificate Management Environment
  27. .Pq ACME
  28. client daemon which can automatically request and renew X.509 security certificates from various Certification Authorities
  29. .Pq CA .
  30. .Pp
  31. The options are as follows:
  32. .Bl -tag
  33. .It Fl c, -config Ar FILE
  34. Specify an alternative configuration file.
  35. .It Fl f, -foreground
  36. Runs in the foreground
  37. .It Fl h, -help
  38. Prints help information
  39. .It Fl -log-stderr
  40. Prints log messages to the standard error output
  41. .It Fl -log-syslog
  42. Sends log messages via syslog
  43. .It Fl -log-level Ar LEVEL
  44. Specify the log level. Possible values: error, warn, info, debug and trace.
  45. .It Fl -pid-file Ar FILE
  46. Specifies the location of the PID file
  47. .It Fl -root-cert Ar FILE
  48. Add a root certificate to the trust store. This option can be used multiple times.
  49. .It Fl V, -version
  50. Prints version information
  51. .Sh FILES
  52. .Bl -tag
  53. .It Pa /etc/acmed/acmed.toml
  54. Default
  55. .Nm
  56. configuration file.
  57. .Sh SEE ALSO
  58. .Xr acmed.toml 5 ,
  59. .Xr tacd 8
  60. .Sh STANDARDS
  61. .Bl
  62. .It
  63. .Rs
  64. .%A R. Barnes
  65. .%A J. Hoffman-Andrews
  66. .%A D. McCarney
  67. .%A J. Kasten
  68. .%D March 2019
  69. .%R RFC 8555
  70. .%T Automatic Certificate Management Environment (ACME)
  71. .Re
  72. .It
  73. .Rs
  74. .%A R.B. Shoemaker
  75. .%D February 2020
  76. .%R RFC 8737
  77. .%T Automated Certificate Management Environment (ACME) TLS Application-Layer Protocol Negotiation (ALPN) Challenge Extension
  78. .Re
  79. .Sh AUTHORS
  80. .An Rodolphe Bréard
  81. .Aq rodolphe@breard.tf