client.json 447 B

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