githubEdit

Reverse Proxy

circle-exclamation

Nginx

A sample proxy configuration is included in SWAG (Secure Web Application Gateway)arrow-up-right.

However, this page is still the only source of truth, so the SWAG sample configuration is not guaranteed to be up-to-date. If you find an inconsistency, please report it to the LinuxServer teamarrow-up-right or submit a pull request to update itarrow-up-right.

To use the bundled configuration file, simply rename overseerr.subdomain.conf.sample in the proxy-confs folder to overseerr.subdomain.conf.

Alternatively, you can create a new file overseerr.subdomain.conf in proxy-confs with the following configuration:

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    server_name overseerr.*;

    include /config/nginx/ssl.conf;

    client_max_body_size 0;

    location / {
        include /config/nginx/proxy.conf;
        resolver 127.0.0.11 valid=30s;
        set $upstream_app overseerr;
        set $upstream_port 5055;
        set $upstream_proto http;
        proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    }

}

Traefik (v2)

Add the following labels to the Overseerr service in your docker-compose.yml file:

For more information, please refer to the Traefik documentationarrow-up-right.

Last updated

Was this helpful?