-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
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
feat: SSL certificate for DAPI #519
Conversation
This pull request introduces 1 alert when merging 57099de into 853f140 - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging fe2e598 into 853f140 - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging d12286c into 853f140 - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging ece720b into 853f140 - view on LGTM.com new alerts:
|
packages/dapi-grpc/clients/platform/v0/nodejs/PlatformPromiseClient.js
Outdated
Show resolved
Hide resolved
enum: ['zerossl', 'manual'], | ||
}, | ||
zerossl: { | ||
type: ['object', 'null'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove type null
packages/dashmate/templates/platform/drive/tenderdash/config.toml.dot
Outdated
Show resolved
Hide resolved
packages/js-dapi-client/lib/transport/GrpcTransport/GrpcTransport.js
Outdated
Show resolved
Hide resolved
This pull request introduces 1 alert when merging 3822ab9 into 853f140 - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging a0fb44c into 853f140 - view on LGTM.com new alerts:
|
This pull request introduces 23 alerts and fixes 13 when merging 4ef3433 into 853f140 - view on LGTM.com new alerts:
fixed alerts:
|
This pull request introduces 23 alerts and fixes 13 when merging 5d89bf8 into 853f140 - view on LGTM.com new alerts:
fixed alerts:
|
This pull request introduces 1 alert when merging 9c299ca into 853f140 - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging afdf5bf into 853f140 - view on LGTM.com new alerts:
|
packages/dashmate/src/listr/tasks/setup/setupRegularPresetTaskFactory.js
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -0,0 +1,16 @@ | |||
const forge = require('node-forge'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
forge is outdated and very slow (not suitable for Raspberry Pi and such). Consider using the node crypto and acme (the original native Let's Encrypt module for node):
These are fast, lightweight, and use native crypto.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, thank you. @shuplenkov please update it your current PR.
Issue being fixed or feature implemented
Need to obtain SSL certificate during
setup
command executionWhat was done?
Dashmate
setup
now obtains SSL certificate by itselfHow Has This Been Tested?
Manual
Breaking Changes
No
Checklist:
For repository code-owners and collaborators only