bland-finland-95044
02/26/2024, 2:39 PMchilly-king-10285
02/26/2024, 2:39 PMchilly-king-10285
02/26/2024, 2:40 PMbland-finland-95044
02/26/2024, 2:41 PMchilly-king-10285
02/26/2024, 2:41 PMchilly-king-10285
02/26/2024, 2:41 PMremoteremote_jsonremote_jsonyaml # Global configuration file oathkeeper.yml   authorizers:    remote_json:    # Set enabled to "true" to enable the authenticator, and "false" to disable the authenticator. Defaults to "false".    enabled: true       config:    remote: <http://my-remote-authorizer/authorize>    payload: |    {    "subject": "{{ print .Subject }}",    "resource": "{{ printIndex .MatchContext.RegexpCaptureGroups 0 }}"    }remotepayloadAuthenticationSessionbland-finland-95044
02/26/2024, 2:43 PMchilly-king-10285
02/26/2024, 2:43 PMchilly-king-10285
02/26/2024, 2:44 PMauth_requestnginx location /protected/ {     auth_request /authz;     ... }  location = /authz {     internal;     proxy_pass <http://ory-oathkeeper-api-url/decisions;>     proxy_pass_request_body off;     proxy_set_header Content-Length "";     proxy_set_header X-Original-URI $request_uri; }/decisions/protected/X-Original-URI