Fix integration test proxy certificate arguments (#190)

main
Mark Haines 2017-08-21 16:23:59 +01:00 committed by Brendan Abolivier
parent 35df4767c6
commit 81179a0595
1 changed files with 2 additions and 0 deletions

View File

@ -94,6 +94,8 @@ func StartProxy(bindAddr string, cfg *config.Dendrite) (*exec.Cmd, chan error) {
"--sync-api-server-url", "http://" + string(cfg.Listen.SyncAPI),
"--client-api-server-url", "http://" + string(cfg.Listen.ClientAPI),
"--media-api-server-url", "http://" + string(cfg.Listen.MediaAPI),
"--tls-cert", "server.crt",
"--tls-key", "server.key",
}
return CreateBackgroundCommand(
filepath.Join(filepath.Dir(os.Args[0]), "client-api-proxy"),