I am trying to get oathproxy authenticate HS384 (o...
# ory-selfhosting
f
I am trying to get oathproxy authenticate HS384 (or any other request) via api or proxy. It seems I am not able to build any config which does not end within an exception. I am using this resource: https://www.ory.sh/docs/oathkeeper/configure-deploy This works for me. In the minute I try to change when modifying according to https://www.ory.sh/docs/oathkeeper/pipeline/authn#jwt, authentication throws an error What I modified:
Copy code
authenticators:
  anonymous:
    enabled: true
    config:
      subject: guest
  jwt:                                                                                                                                                                                                                                                                                
    enabled: true
    config:
      jwks_urls:
        - "file:///etc/secrets/secret.json"
      scope_strategy: none
      token_from:
        header: Authorization
      trusted_issuers:
        - <http://localhost:4455/>
      allowed_algorithms:
        - HS384
resolved