mirror of
https://github.com/tlsnotary/notary-server.git
synced 2026-01-09 22:47:55 -05:00
* Add logic to promote to http and then downgrade to tcp for notarization. * Fix client hang issueno * Change channel message type. * Fix response parsing from notary. * Fix websocket implementation and use upgrade protocol for raw tcp. * Modify test to mimick browser extension for websocket test. * Refactor tcp client handling. * Add global store for persistent data. * Finish websocket handler and test. * Add comments. * Add more comments and documentation. * Add openapi.yaml. * Modify README. * Add architecture explanation. * Modify README. * Fix PR based on comments. * Combine tcp and websocket extractors. * Refactor and fix documentations.
18 lines
347 B
YAML
18 lines
347 B
YAML
server:
|
|
name: "notary-server"
|
|
domain: "127.0.0.1"
|
|
port: 7047
|
|
|
|
notarization:
|
|
max-transcript-size: 16384
|
|
|
|
tls-signature:
|
|
private-key-pem-path: "./src/fixture/tls/notary.key"
|
|
certificate-pem-path: "./src/fixture/tls/notary.crt"
|
|
|
|
notary-signature:
|
|
private-key-pem-path: "./src/fixture/notary/notary.key"
|
|
|
|
tracing:
|
|
default-level: DEBUG
|