We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The updated toml reads:
[jwt] expiration = 180 accessprivatekeypath = "/usr/local/festivals-identity-server/authentication.pem" accesspublickeypath = "/usr/local/festivals-identity-server/authentication-key.pem"
This configuration fails with an obscure message.
Private key == key Public key == certificate The accessprivatekeypath must point to a KEY file and the accesspublickeypath to a CERTIFICATE file
accessprivatekeypath
accesspublickeypath
It would be helpful to change the example to:
[jwt] expiration = 180 accessprivatekeypath = "/usr/local/festivals-identity-server/authentication-key.pem" accesspublickeypath = "/usr/local/festivals-identity-server/authentication.pem"
Or more explicit to:
[jwt] expiration = 180 accessprivatekeypath = "/usr/local/festivals-identity-server/authentication-key.pem" accesspublickeypath = "/usr/local/festivals-identity-server/authentication-certificate.pem"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The updated toml reads:
This configuration fails with an obscure message.
Private key == key
Public key == certificate
The
accessprivatekeypath
must point to a KEY file and theaccesspublickeypath
to a CERTIFICATE fileIt would be helpful to change the example to:
Or more explicit to:
The text was updated successfully, but these errors were encountered: