mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
cockpit: Explicitly redirect to HTTPS as needed for WebSockets
Cockpit uses WebSockets which won't work without HTTPS. For .onion domains, we are not explicitly redirecting to HTTPS since TLS is not necessary. Ensure that Cockpit continues to work with .onion domains by explicitly redirecting to HTTPS. Tests: - Without the patch, on a normal/Onion domain run curl -kv http://{DOMAIN}/_cockpit/. Redirection does not happen. - With the patch, on a normal/Onion domain run curl -kv http://{DOMAIN}/_cockpit/. Redirection happen to https:// occurs. - Redirection is a with HTTP status code 302, the temporary redirection code. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
a1521e5d0a
commit
5e4a0f0a38
@ -8,6 +8,12 @@
|
|||||||
## mod_proxy_wstunnel
|
## mod_proxy_wstunnel
|
||||||
##
|
##
|
||||||
<Location /_cockpit/>
|
<Location /_cockpit/>
|
||||||
|
# Redirect to HTTPS in case of not already using it. This can happen since
|
||||||
|
# we don't redirect for .onion domains.
|
||||||
|
RewriteEngine on
|
||||||
|
ReWriteCond %{HTTPS} !=on
|
||||||
|
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L]
|
||||||
|
|
||||||
ProxyPass http://localhost:9090/_cockpit/
|
ProxyPass http://localhost:9090/_cockpit/
|
||||||
</Location>
|
</Location>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user