Adding Content-Type support!

When used with Nginx proxy pass "node node-server.js" command will not pass Content-Type to Nginx which will result in having index.html displayed as a text file. No html, CSS, icons, and JS execution on the browser!
This commit is contained in:
h3raq 2018-02-09 19:13:20 +03:00 committed by GitHub
parent fd74a77fa1
commit 6b6e06406c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,16 @@ http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname,
filename = path.join(process.cwd(), uri);
var extname = path.extname(filename);
var contentType = 'text/html';
switch (extname) {
case '.js': contentType = 'text/javascript'; break;
case '.css': contentType = 'text/css'; break;
case '.ico': contentType = 'image/x-icon'; break;
case '.svg': contentType = 'image/svg+xml'; break;
}
fs.exists(filename, function(exists) {
if(!exists) {
response.writeHead(404, {"Content-Type": "text/plain"});
@ -25,7 +35,7 @@ http.createServer(function(request, response) {
response.end();
return;
}
response.writeHead(200);
response.writeHead(200, {'Content-Type': contentType});
response.write(file, "binary");
response.end();
});