Files
configpolicy/roles/prowlarr/templates/prowlarr.httpd.conf.j2
Dustin C. Hatch 9223dbe820 prowlarr: Deploy Prowlarr in a Podman container
The `prowlarr.yml` playbook and corresponding role deploy Prowlarr, the
indexer manager for the *arr suite, in a Podman container.

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

21 lines
660 B
Django/Jinja

# vim: set ft=apache.jinja :
<VirtualHost _default_:443>
ServerName prowlarr.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:9696/$1 [P,L]
RewriteRule /(.*) http://localhost:9696/$1 [P,L]
ProxyPassReverse / http://localhost:9696/
Header always set \
Strict-Transport-Security "max-age=63072000; includeSubDomains"
</VirtualHost>