mod_websocket: Guard against upgrading to websocket from a HEAD request

This commit is contained in:
Kim Alvefur 2019-10-12 19:16:43 +02:00
parent 8e485ec320
commit bf5f096225

View file

@ -136,7 +136,7 @@ function handle_request(event)
conn.starttls = false; -- Prevent mod_tls from believing starttls can be done
if not request.headers.sec_websocket_key then
if not request.headers.sec_websocket_key or request.method ~= "GET" then
response.headers.content_type = "text/html";
return [[<!DOCTYPE html><html><head><title>Websocket</title></head><body>
<p>It works! Now point your WebSocket client to this URL to connect to Prosody.</p>