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
Please download the attached files and unpack them to file_server directory. In my case it is /dev/go/src/github.com/authcrunch/authcrunch-ui/frontend/profile/build/ and in your case it will be somet
The Caddyfile configuration follows:
{
security {
...
authorization policy portal_policy {
set auth url https://auth.myfiosgateway.com:8443/auth/
crypto key sign-verify {env.JWT_SHARED_KEY}
acl rule {
comment allow admins
match role authp/admin
allow stop log info
}
acl rule {
comment allow users
match role authp/user
allow stop log info
}
acl rule {
comment default deny
match any
deny stop log warn
}
}
...
}
}
auth.myfiosgateway.com {
tls {$HOME}/.local/tls/myfiosgateway/server.crt {$HOME}/.local/tls/myfiosgateway/server.key
route /version* {
respond "auth 1.0"
}
# Vite Build Files
route /auth/profile* {
authorize with portal_policy
uri strip_prefix /auth/profile
file_server {
root {$HOME}/dev/go/src/github.com/authcrunch/authcrunch-ui/frontend/profile/build/
pass_thru
}
rewrite * /index.html
file_server {
root {$HOME}/dev/go/src/github.com/authcrunch/authcrunch-ui/frontend/profile/build/
pass_thru
}
}
route /auth* {
authenticate with myportal
}
route / {
redir https://{hostport}/auth/ 302
}
}
Please provide your feedback via email. I will be uploading new versions of the Profile UI here. You should be able to track the versions in the UI itself.
Importantly, Profile UI is only available with local identity store at the moment. I am working on connecting OAuth user identities to local store, making the "local" store distributed, and making OAuth users being able to configure their profiles (e.g. API keys, MFA, etc.)
The text was updated successfully, but these errors were encountered:
Released Profile UI 1.0.0
Please download the attached files and unpack them to
file_server
directory. In my case it is/dev/go/src/github.com/authcrunch/authcrunch-ui/frontend/profile/build/
and in your case it will be sometThe
Caddyfile
configuration follows:Please provide your feedback via email. I will be uploading new versions of the Profile UI here. You should be able to track the versions in the UI itself.
Importantly, Profile UI is only available with
local
identity store at the moment. I am working on connecting OAuth user identities to local store, making the "local" store distributed, and making OAuth users being able to configure their profiles (e.g. API keys, MFA, etc.)The text was updated successfully, but these errors were encountered: