Skip to content

Commit

Permalink
Fix SCITT demo script (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
andpiccione authored Jul 18, 2023
1 parent 0882204 commit a870861
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions demo/github/1-scitt-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ mkdir -p tmp

SCITT_URL="https://127.0.0.1:8000"

curl -o tmp/cacert.pem "https://ccadb-public.secure.force.com/mozilla/IncludedRootsPEMTxt?TrustBitsInclude=Websites"
curl -L -o tmp/cacert.pem "https://ccadb-public.secure.force.com/mozilla/IncludedRootsPEMTxt?TrustBitsInclude=Websites"
scitt governance propose_ca_certs \
--name did_web_tls_roots \
--ca-certs tmp/cacert.pem \
--url $SCITT_URL \
--member-key workspace/sandbox_common/member0_privk.pem \
--member-cert workspace/sandbox_common/member0_cert.pem \
--member-key workspace/member0_privk.pem \
--member-cert workspace/member0_cert.pem \
--development

echo '{ "authentication": { "allow_unauthenticated": true } }' > tmp/configuration.json
scitt governance propose_configuration \
--configuration tmp/configuration.json \
--member-key workspace/sandbox_common/member0_privk.pem \
--member-cert workspace/sandbox_common/member0_cert.pem \
--member-key workspace/member0_privk.pem \
--member-cert workspace/member0_cert.pem \
--development

TRUST_STORE=tmp/trust_store
Expand Down

0 comments on commit a870861

Please sign in to comment.