mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
7 lines
206 B
Bash
7 lines
206 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while true;
|
||
|
do
|
||
|
oidc-tester-app --issuer https://login.example.com:8080 --id oidc-tester-app --secret foobar --scopes openid,profile,email --redirect-domain oidc.example.com
|
||
|
sleep 5
|
||
|
done
|