15 lines
368 B
Bash
Executable file
15 lines
368 B
Bash
Executable file
#!/bin/bash
|
|
|
|
socat "openssl-listen:4443,\
|
|
reuseaddr,\
|
|
fork,\
|
|
verify=0,\
|
|
cert=/tmp/garage.pem" tcp4-connect:localhost:3900 &
|
|
|
|
sleep 1
|
|
|
|
export ENDPOINT=localhost:4443
|
|
export AWS_ACCESS_KEY_ID=GK4ea45d2f25091883071e0b73
|
|
export AWS_SECRET_ACCESS_KEY=334f7b0ef233571c67b302c5197e6b8c7150da1907e4e530caa82e041d725ecf
|
|
|
|
/home/quentin/go/bin/bench-garage | tee 50ms.garage.csv
|