mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.httpserver: Removed mime handling (now in mod_httpserver). Unknown dynamic content is now always served as text/html.
This commit is contained in:
parent
74e0382621
commit
c7fa0dd97e
1 changed files with 1 additions and 6 deletions
|
@ -23,9 +23,6 @@ local urlencode = function (s) return s and (s:gsub("%W", function (c) return st
|
|||
|
||||
local log = require "util.logger".init("httpserver");
|
||||
|
||||
-- TODO: Should we read this from /etc/mime.types if it exists? (startup time...?)
|
||||
local mime_map = { html = "text/html", txt = "plain/text; charset=utf-8", js = "text/javascript" };
|
||||
|
||||
local http_servers = {};
|
||||
|
||||
module "httpserver"
|
||||
|
@ -68,9 +65,7 @@ local function send_response(request, response)
|
|||
|
||||
resp = { "HTTP/1.0 200 OK\r\n" };
|
||||
t_insert(resp, "Connection: close\r\n");
|
||||
t_insert(resp, "Content-Type: ");
|
||||
t_insert(resp, mime_map[request.url.path:match("%.(%w+)")] or "application/octet-stream");
|
||||
t_insert(resp, "\r\n");
|
||||
t_insert(resp, "Content-Type: text/html\r\n");
|
||||
t_insert(resp, "Content-Length: ");
|
||||
t_insert(resp, #response);
|
||||
t_insert(resp, "\r\n\r\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue