Is this a new feature request?
Wanted change
With the deprecation of the LSIO Overseerr container in favor of the official Seerr container, it would be nice to have a sample reverse proxy config for Seerr.
Reason for change
Overseerr container has been deprecated in favor of official Seerr container.
Proposed code change
Updated to the example config from their docs.
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name seerr.*;
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 seerr;
set $upstream_port 5055;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}
Is this a new feature request?
Wanted change
With the deprecation of the LSIO Overseerr container in favor of the official Seerr container, it would be nice to have a sample reverse proxy config for Seerr.
Reason for change
Overseerr container has been deprecated in favor of official Seerr container.
Proposed code change
Updated to the example config from their docs.