Skip to content

Organizr Auth for Nginx Proxy Apps

phob edited this page Nov 16, 2020 · 5 revisions

You search to secure your applications without configure them one by one and use a central method ?

If you use Organizr, you can add instructions to nginx-proxy config to use authentication of Organizr app.

More information about ServerAuth feature provided by Organizr: https://docs.organizr.app/books/setup-features/page/serverauth

Create a new file within the following directory:

cd /opt/nginx-proxy/vhost.d

Name the file according the following by replacing domain & app name:

nano appname.my-domain.com_location

e.g. sonarr.my-domain.com_location

Add these block in content of file just created

e.g. for Sonarr app

Update 11/16/2020 for v2

## Auth block - Organizr ##
location ~ ^/auth-(.*) {
    ## Has to be local ip or local DNS name
    proxy_pass http://organizr:80/api/v2/auth&group=$1;
    proxy_pass_request_body off;
    proxy_set_header Content-Length "";

}

## Auth request for app  - Sonarr ##
auth_request /auth-0; # 0 mean admin level minimum to access
location /api { # We know that sonarr's api-endpoint is /api, so we are gonna open that up.
    auth_request off; # The line that actually opens it up
    proxy_pass http://sonarr:8989/api; # We need to tell nginx where to send the request
}

You can retrieve more examples of nginx-proxy block for many apps here: https://github.com/organizrTools/Config-Collections-for-Nginx/tree/master/Apps if you want optimisation :)

NB: Don't forget to remove "/appname" in location directive as it's directly under a subdomain with Cloudbox.

Apply modifications

You need now to restart nginx-proxy & your app container to apply these modifications.

docker restart nginx-proxy appname

e.g. docker restart nginx-proxy sonarr

You can now test it by using private browsing, access your app directly, you will be denied by a forbidden message, login in organizr and return to your app, access will now be allowed.

Enjoy it :)

Install Guides

Repository

Apps

Misc Guides

General Stuff

Linux Stuff

Plex

Organizr

Downloading

STRM

Clone this wiki locally