Fix TLS-Certificate not set correctly

This commit is contained in:
Ilja Neumann
2020-03-25 16:28:30 +01:00
committed by Ilja Neumann
parent 8beb616d22
commit 1aa2b1df07
2 changed files with 4 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
Bugfix: Set TLS-Certificate correctly
https://github.com/owncloud/ocis-proxy/pull/25

View File

@@ -25,7 +25,7 @@ func Server(opts ...Option) (svc.Service, error) {
l.Fatal().Err(err).Msgf("Could not generate test-certificate")
}
httpCfg.TLSKey = "server.crt"
httpCfg.TLSCert = "server.crt"
httpCfg.TLSKey = "server.key"
}