mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Set connections starttls method to false to prevent mod_tls from offering starttls (fixes #837)
This commit is contained in:
parent
3405d89baa
commit
013b8292ab
1 changed files with 2 additions and 0 deletions
|
@ -136,6 +136,8 @@ function handle_request(event)
|
|||
local request, response = event.request, event.response;
|
||||
local conn = response.conn;
|
||||
|
||||
conn.starttls = false; -- Prevent mod_tls from believing starttls can be done
|
||||
|
||||
if not request.headers.sec_websocket_key then
|
||||
response.headers.content_type = "text/html";
|
||||
return [[<!DOCTYPE html><html><head><title>Websocket</title></head><body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue