From 16af493cad28ab23c3c1abb128b4db3b405f25e9 Mon Sep 17 00:00:00 2001 From: Eric Urban Date: Tue, 25 Apr 2017 09:42:28 -0500 Subject: [PATCH] Update docker script to allow for configuration of virtualhost --- src/main/resources/run-docker-container.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/run-docker-container.sh b/src/main/resources/run-docker-container.sh index b385e28..4f8051b 100755 --- a/src/main/resources/run-docker-container.sh +++ b/src/main/resources/run-docker-container.sh @@ -3,6 +3,7 @@ exec java \ -DLOG_LEVEL=${LOG_LEVEL} \ -Ds3proxy.endpoint=http://0.0.0.0:80 \ + -Ds3proxy.virtual-host=${S3PROXY_VIRTUALHOST} \ -Ds3proxy.authorization=${S3PROXY_AUTHORIZATION} \ -Ds3proxy.identity=${S3PROXY_IDENTITY} \ -Ds3proxy.credential=${S3PROXY_CREDENTIAL} \