Skip to content

Commit

Permalink
fix(infra): change didcomm endpoint - remove suffix (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpoltorak-io authored Dec 12, 2022
1 parent 5f17eb6 commit 2dcf5e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions infrastructure/multi/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd ${SCRIPT_DIR}

echo "--------------------------------------"
echo "Starting issuer using `local/run.sh`"
echo "Starting issuer using local/run.sh"
echo "--------------------------------------"

../local/run.sh -p 8080 -n issuer -b

echo "--------------------------------------"
echo "Starting holder using `local/run.sh`"
echo "Starting holder using local/run.sh"
echo "--------------------------------------"

../local/run.sh -p 8090 -n holder -b

echo "--------------------------------------"
echo "Starting verifier using `local/run.sh`"
echo "Starting verifier using local/run.sh"
echo "--------------------------------------"

../local/run.sh -p 9000 -n verifier -b
4 changes: 2 additions & 2 deletions infrastructure/shared/apisix/conf/apisix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ routes:
plugins:
proxy-rewrite:
regex_uri: ["^/prism-agent/(.*)","/$1"]
- uri: /didcomm/*
- uri: /didcomm
upstream_id: 3
plugins:
proxy-rewrite:
regex_uri: ["^/didcomm/(.*)","/$1"]
uri: "/"
- uri: /prism-agent/schema-registry/*
upstream_id: 4
plugins:
Expand Down

0 comments on commit 2dcf5e3

Please sign in to comment.