Network
Radarr should be run via a Reverse Proxy, allowing you to isolate and wrap connections in SSL. See NGINX for more details. See Setup Base Proxy Control for basic proxy configuration.
Ports
---
###############################################################################
# Ports Configuration
###############################################################################
# Ports should be managed externally via an OS role.
ports:
- {proto: 'tcp', from_ip: 'any', to_port: 80, direction: 'in', comment: 'roundcube http'}
Using Subdomains
server {
listen 443 ssl http2;
server_name roundcube.{DOMAIN} roundcube;
location / {
proxy_pass http://roundcube;
include /etc/nginx/conf.d/proxy-control.conf;
}
}
Using Subpaths
server {
location /roundcube/ {
proxy_pass http://roundcube;
include /etc/nginx/conf.d/proxy-control.conf;
}
}