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
For my project I had to set a custom value for httpPort in pebble-config.json.
httpPort
pebble-config.json
Currently in my custom JSON I need to specify the rest of the configuration as well:
{ "pebble": { "listenAddress": "0.0.0.0:14000", "managementListenAddress": "0.0.0.0:15000", "certificate": "test/certs/localhost/cert.pem", "privateKey": "test/certs/localhost/key.pem", "httpPort": 80, "tlsPort": 5001, "ocspResponderURL": "", "externalAccountBindingRequired": false } }
It would be convenient if I could omit all properties but the ones I need to modify. So my JSON would look like this:
{ "pebble": { "httpPort": 80 } }
Pebble could pull the default values for the rest.
The text was updated successfully, but these errors were encountered:
Seems like a reasonable request 👍 I probably won't have a chance to implement this short term but would accept a PR from the community.
Sorry, something went wrong.
Add default configuration values
f933203
Address issue letsencrypt#297
No branches or pull requests
For my project I had to set a custom value for
httpPort
inpebble-config.json
.Currently in my custom JSON I need to specify the rest of the configuration as well:
It would be convenient if I could omit all properties but the ones I need to modify. So my JSON would look like this:
Pebble could pull the default values for the rest.
The text was updated successfully, but these errors were encountered: