Skip to content
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

fix: import register route to https server #511

Merged
merged 2 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions container/nginx/confs/tls_proxy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ server {

include /usr/src/app/shared/nginx_conf/*.conf;
include /etc/nginx/conf.d/shared.conf;
include /etc/nginx/conf.d/register.conf;
}

server {
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ If this returns `{"error":"Unable to deregister"}` then you may have used the "s
Note that the _Failed registration: Node ... cannot register with newer version 1044_4292ce7 without deregistering first. Please make sure to set up graceful version upgrades._
start-up error, which is what typically triggers having to do this, prints the short instead of the long Node ID.

If this returns `{"error":"Invalid nodeId"}` then the syntax is wrong for another reason.
If this returns `{"error":"Invalid nodeId"}` then the syntax is wrong for another reason.

Using [`curl`](https://curl.se) this can be done with `curl -X POST https://orchestrator.strn.pl/deregister -H 'Content-Type: application/json' -d '{ "nodeId": "12345678-a3fa-3a10-a123-987e6b543c21" }'`.

Expand Down
Loading