You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/bin/bashset -e -x
domain_name=example.com
username='username'
password='password'
iglu_server_super_uid='deadbeef-dead-beef-dead-beefdeadbeef'# DO NOT ALTER BELOW #
sudo service iglu_server_0.2.0 restart
sudo service snowplow_mini_control_plane_api restart
sleep 10
# Add domain name to Caddyfile
curl -XPOST -d "domain_name=$domain_name" localhost:10000/domain-name
# Add username and password to Caddyfile for basic auth
curl -XPOST -d "new_username=$username&new_password=$password" localhost:10000/credentials
# Add apiKey to iglu-resolver.json for auth in the iglu server
curl -XPOST -d "local_iglu_apikey=$iglu_server_super_uid" localhost:10000/local-iglu-apikey
Needs to be modified to:
cc @jbeemster
The text was updated successfully, but these errors were encountered: