using dashes instead of underscores in header names to avoid the fact that nginx by default drops all headers with underscore in the header name

This commit is contained in:
azivner
2018-11-30 15:49:35 +01:00
parent 4cc08bff8b
commit 8ee80cb5f1
3 changed files with 5 additions and 4 deletions

View File

@@ -12,9 +12,10 @@ function getHeaders() {
// headers need to be lowercase because node.js automatically converts them to lower case
// so hypothetical protectedSessionId becomes protectedsessionid on the backend
// also avoiding using underscores instead of dashes since nginx filters them out by default
return {
protected_session_id: protectedSessionId,
source_id: glob.sourceId
'trilium-protected-session-id': protectedSessionId,
'trilium-source-id': glob.sourceId
};
}