aboutsummaryrefslogtreecommitdiffstats
path: root/net/httpserver.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-12-10 16:36:33 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-12-10 16:36:33 +0500
commit0c6835cf3a30516049962897a7b1030012c82da1 (patch)
tree5962f1500fb44979679dbd27a28ae533d146b15b /net/httpserver.lua
parent01e8004bf637a42eaf94174cb809f7b459517194 (diff)
downloadprosody-0c6835cf3a30516049962897a7b1030012c82da1.tar.gz
prosody-0c6835cf3a30516049962897a7b1030012c82da1.zip
net.httpserver: Removed mime handling (now in mod_httpserver). Unknown dynamic content is now always served as text/html.
Diffstat (limited to 'net/httpserver.lua')
-rw-r--r--net/httpserver.lua7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/httpserver.lua b/net/httpserver.lua
index beaa3d64..dae49d2a 100644
--- a/net/httpserver.lua
+++ b/net/httpserver.lua
@@ -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");