We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b85162a commit c7cdb07Copy full SHA for c7cdb07
selenium/bin/components/fakeproxy
@@ -1,4 +1,10 @@
1
+#!/usr/bin/env bash
2
3
+SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4
+
5
+if [[ ! -z "${DEBUG}" ]]; then
6
+ set -x
7
+fi
8
9
ensure_fakeproxy() {
10
if docker ps | grep fakeproxy &> /dev/null; then
@@ -10,7 +16,7 @@ ensure_fakeproxy() {
16
11
17
init_fakeproxy() {
12
18
FAKEPROXY_URL=${FAKEPROXY_URL:-http://fakeproxy:9090}
13
- FAKEPROXY_DIR=${SCRIPT}/../fakeportal
19
+ FAKEPROXY_DIR=${SCRIPT}/../../fakeportal
14
20
CLIENT_ID="${CLIENT_ID:-rabbit_idp_user}"
15
21
CLIENT_SECRET="${CLIENT_SECRET:-rabbit_idp_user}"
22
RABBITMQ_HOST_FOR_FAKEPROXY=${RABBITMQ_HOST_FOR_FAKEPROXY:-rabbitmq:15672}
0 commit comments