Files
configpolicy/roles/radarr/templates/radarr.httpd.conf.j2
Dustin C. Hatch a41a3fa3d0 radarr: Deploy Radarr in a Podman container
The `radarr.yml` playbook and corresponding role deploy Radarr, the
movie library/download manager, in a Podman container.

Note that we're relocating the log files from the Radarr AppData
directory to `/var/log/radarr` so they can be picked up by Fluent Bit.
2025-12-03 23:00:54 -06:00

21 lines
658 B
Django/Jinja

# vim: set ft=apache.jinja :
<VirtualHost _default_:443>
ServerName radarr.pyrocufflink.blue
SSLCertificateFile /etc/pki/tls/certs/localhost.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
SSLCertificateChainFile /etc/pki/tls/certs/localhost.crt
ProxyPreserveHost On
ProxyRequests Off
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.*) ws://localhost:7878/$1 [P,L]
RewriteRule /(.*) http://localhost:7878/$1 [P,L]
ProxyPassReverse / http://localhost:7878/
Header always set \
Strict-Transport-Security "max-age=63072000; includeSubDomains"
</VirtualHost>