Skip to content

Commit

Permalink
feat: add tls object - set enabled flag to bypass certs in proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiancola9 committed Oct 31, 2024
1 parent 39dd45c commit 34095ad
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 1,603 deletions.
10 changes: 10 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@
"type": "object"
}
}
},
"tls": {
"description": "TLS configuration for secure connections",
"type": "object",
"properties": {
"enabled": { "type": "boolean" },
"key": { "type": "string" },
"cert": { "type": "string" }
},
"required": ["enabled", "key", "cert"]
}
},
"definitions": {
Expand Down
Loading

0 comments on commit 34095ad

Please sign in to comment.