server.json 485 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "request": {
  3. "CN": "test server",
  4. "hosts": [
  5. "127.0.0.1"
  6. ]
  7. },
  8. "profiles": {
  9. "paths": {
  10. "private_key": "server.key",
  11. "certificate": "server.pem"
  12. },
  13. "cfssl": {
  14. "profile": "server",
  15. "remote": "127.0.0.1:8888"
  16. }
  17. },
  18. "roots": [
  19. {
  20. "type": "system"
  21. }
  22. ],
  23. "client_roots": [
  24. {
  25. "type": "cfssl",
  26. "metadata": {
  27. "host": "127.0.0.1:8888",
  28. "profile": "maclient"
  29. }
  30. }
  31. ]
  32. }