r/jellyfin: Fix HAProxy vhost
Without including the settings from `ssl.include`, the virtual host bound to port 8443 expects to handle plain HTTP traffic, rather than HTTPS.frigate-exporter
parent
e4766e54ac
commit
226232414f
|
@ -31,6 +31,8 @@ Listen 8443
|
||||||
<VirtualHost _default_:8443>
|
<VirtualHost _default_:8443>
|
||||||
ServerName {{ jellyfin_server_name }}
|
ServerName {{ jellyfin_server_name }}
|
||||||
|
|
||||||
|
Include conf.d/ssl.include
|
||||||
|
|
||||||
SSLCertificateFile {{ jellyfin_ssl_certificate }}
|
SSLCertificateFile {{ jellyfin_ssl_certificate }}
|
||||||
SSLCertificateKeyFile {{ jellyfin_ssl_certificate_key }}
|
SSLCertificateKeyFile {{ jellyfin_ssl_certificate_key }}
|
||||||
SSLCertificateChainFile {{ jellyfin_ssl_certificate }}
|
SSLCertificateChainFile {{ jellyfin_ssl_certificate }}
|
||||||
|
|
Loading…
Reference in New Issue