File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "$id" : " https://raw.githubusercontent.com/bfren/docker-nginx-proxy/main/ssl-conf-schema.json" ,
3+ "$schema" : " https://json-schema.org/draft-07/schema" ,
4+ "type" : " object" ,
5+ "required" : [ " domains" ],
6+ "additionalProperties" : false ,
7+ "properties" : {
8+ "domains" : {
9+ "type" : " array" ,
10+ "items" : { "$ref" : " #/$defs/domain" }
11+ }
12+ },
13+ "$defs" : {
14+ "domain" : {
15+ "type" : " object" ,
16+ "required" : [ " primary" , " upstream" ],
17+ "additionalProperties" : false ,
18+ "properties" : {
19+ "primary" : {
20+ "type" : " string" ,
21+ },
22+ "upstream" : {
23+ "type" : " string" ,
24+ },
25+ "aliases" : {
26+ "type" : " array" ,
27+ "items" : {
28+ "type" : " string"
29+ }
30+ },
31+ "custom" : {
32+ "type" : " boolean" ,
33+ }
34+ }
35+ }
36+ }
37+ }
You can’t perform that action at this time.
0 commit comments