-
Hi, I edited the .step/config/ca.json to add the "options" section as shown below
The default.tpl looks like this:
After I start Step-CA, when I use a
Any input on what Im missing would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
With a recent version of {
"type": "ACME",
"name": "acme",
"claims": {
"minTLSCertDuration": "24h",
"maxTLSCertDuration": "2160h",
"defaultTLSCertDuration": "2160h"
},
"options": {
"x509": {
"templateFile": "templates/certs/x509/default.tpl"
}
}
} You are not going to see the template itself. But if you're using a recent version of Your template |
Beta Was this translation helpful? Give feedback.
With a recent version of
step
you should see the options block too, like this:You are not going to see the template itself.
But if you're using a recent version of
step
, there's a case where you will experience your problem, if you use the database to store your provisioners instead of the ca.json. This case is whenenableAdmin
is set totrue
in the ca.json. In that case changes in the ca.json …