mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-05 19:59:37 -06:00
33 lines
644 B
Go
33 lines
644 B
Go
package config
|
|
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
Debug: Debug{
|
|
Addr: "127.0.0.1:9136",
|
|
Token: "",
|
|
Pprof: false,
|
|
Zpages: false,
|
|
},
|
|
HTTP: HTTP{
|
|
Addr: "127.0.0.1:9135",
|
|
Root: "/graph-explorer",
|
|
Namespace: "com.owncloud.web",
|
|
},
|
|
Service: Service{
|
|
Name: "graph-explorer",
|
|
},
|
|
Tracing: Tracing{
|
|
Type: "jaeger",
|
|
Endpoint: "",
|
|
Collector: "",
|
|
Service: "graph-explorer",
|
|
},
|
|
GraphExplorer: GraphExplorer{
|
|
ClientID: "ocis-explorer.js",
|
|
Issuer: "https://localhost:9200",
|
|
GraphURLBase: "https://localhost:9200",
|
|
GraphURLPath: "/graph",
|
|
},
|
|
}
|
|
}
|