mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-24 22:08:58 -05:00
Currently the proxy generates certificates on every start for dev purposes. This commit adds an option to make this behaviour configurable. This also removes the dependency on konnectd`s crypto code and copies it instead, as this library is a first version which is not meant for usage by other services. A proper cert-generation lib should be added to ocis-pkg instead. Then this code can be refactored to use it.
27 lines
1.0 KiB
Modula-2
27 lines
1.0 KiB
Modula-2
module github.com/owncloud/ocis-proxy
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
contrib.go.opencensus.io/exporter/jaeger v0.2.0
|
|
contrib.go.opencensus.io/exporter/ocagent v0.6.0
|
|
contrib.go.opencensus.io/exporter/zipkin v0.1.1
|
|
github.com/micro/cli/v2 v2.1.2-0.20200203150404-894195727d9c
|
|
github.com/micro/go-micro/v2 v2.0.1-0.20200212105717-d76baf59de2e // indirect
|
|
github.com/oklog/run v1.1.0
|
|
github.com/openzipkin/zipkin-go v0.2.2
|
|
github.com/owncloud/ocis-pkg/v2 v2.0.2
|
|
github.com/prometheus/client_golang v1.2.1
|
|
github.com/prometheus/procfs v0.0.8 // indirect
|
|
github.com/restic/calens v0.2.0
|
|
github.com/spf13/afero v1.2.2 // indirect
|
|
github.com/spf13/viper v1.6.2
|
|
go.opencensus.io v0.22.2
|
|
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect
|
|
golang.org/x/sys v0.0.0-20191128015809-6d18c012aee9 // indirect
|
|
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
|
|
gopkg.in/square/go-jose.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v2 v2.2.7 // indirect
|
|
)
|