server_config_example.json 487 B

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