mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Guard against upgrading to websocket from a HEAD request
This commit is contained in:
parent
8e485ec320
commit
bf5f096225
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue