Skip to content

Proof of concept for using OpenPolicyAgent as an authorization layer.

Notifications You must be signed in to change notification settings

AngeloGalav/NGINX-OPA-Authz

Repository files navigation

Using OPA as an auth server with NGINX

Proof of concept for using OpenPolicyAgent as an Authorization server. This configuration uses NGINX as both the service server and reverse proxy, and uses NGINX's auth_request directive in order to pass the authorization request to OPA.

Includes SSL support using dummy certs from INFN CNAF.

You can find another implementation of the proposed PoC using a sidecar here.

Architecture

This scheme follows a simple user request using our system

                      |
                      |                       +------------------+
                      |                       |                  |
                      |                       |  OPA Authz       |
                      |             +---------+  Server          |
                      |             |         |                  |
                      |             | +-------+                  |
              +-------+----+        | |       +------------------+
              |            |   2    | |
     1        |  Reverse   +--------+ |
------------->|  Proxy     |          |3
              |            +----------+
<-------------+            |
      6       |            +--------------------+
              +--------+---+         4          |
                       |  ^                     |
                       |  |                     v
                       |  |                    +----------------+
                       |  |        5           |                |
                       |  +--------------------+  Service       |
                       |                       |  Server        |
                       |                       |                |
                       |                       +----------------+
                       |
                       |
  1. The user makes a request through the frontend/debug_requester. BEWARE: the user must already be authenticated.
  2. NGINX reverse proxy processes the request, and sends it to OPA
  3. OPA makes a decision using its rules and data, and sends it to the Reverse Proxy
  4. NGINX then receives the data coming from OPA and processes it:
  • If allow != true, then NGINX forbids the request to continue further, and sends code 403 to the requesting user.
  • Else, if allow == true, NGINX forwards the request to the Service Server.
  1. (and 6) If the Service Server returns a response, it goes through the Reverse Proxy and gets returned to the server.

How to use

Before you start using this infrastructure, you'll need to add the servicecnaf.test.example host into /etc/hosts of your PC:

127.0.0.1  localhost servicecnaf.test.example

Right after that, you can use the following commands in order to start the Docker containers

sudo docker-compose up

You can access the frontend of this project (and test it) by connecting to https://servicecnaf.test.example:8081/ with a web browser.

A bash tester is also available, but it's incomplete (you can always make the curls to the reverse-proxy yourself though). You can check it out in the debug_requester folder. The debug_requester can be used by using this command:

./debug_requester/requester_test.sh [role] [operation]

Here's an example of the debug_requester of a working debug requester:

./debug_requester/requester_test.sh banned submit

As of right now, the available roles and operations used for testing can be found in the json file at the location opa/data.json. The best way to test the JWT functionality is to use the provided frontend.

SSL Disclaimer

Since the service uses dummy certificates made for testing, your browser may tell you that a certificate may be invalid/the CA cannot be trusted. This is normal and caused by the igi-ca certificates which are, in fact, made for testing purposes only.

Some useful resources

About

Proof of concept for using OpenPolicyAgent as an authorization layer.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published