aboutsummaryrefslogtreecommitdiff
path: root/files/es
diff options
context:
space:
mode:
authoryuto0214w <yuto0214w@gmail.com>2021-11-07 18:41:26 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-09 23:30:51 +0900
commit7dd5e4f16734dae80756c170c2680c98f6679368 (patch)
treea4596c896ab58204fe83a8ffc6decf4d124ffefa /files/es
parent484eea053c501d706b5d8311fca5a94ef18c4d8e (diff)
downloadtranslated-content-7dd5e4f16734dae80756c170c2680c98f6679368.tar.gz
translated-content-7dd5e4f16734dae80756c170c2680c98f6679368.tar.bz2
translated-content-7dd5e4f16734dae80756c170c2680c98f6679368.zip
Update node_server_without_framework
Diffstat (limited to 'files/es')
-rw-r--r--files/es/learn/server-side/node_server_without_framework/index.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/files/es/learn/server-side/node_server_without_framework/index.html b/files/es/learn/server-side/node_server_without_framework/index.html
index 11826d3e73..c103f58774 100644
--- a/files/es/learn/server-side/node_server_without_framework/index.html
+++ b/files/es/learn/server-side/node_server_without_framework/index.html
@@ -33,7 +33,6 @@ http.createServer(function (request, response) {
}
var extname = String(path.extname(filePath)).toLowerCase();
- var contentType = 'text/html';
var mimeTypes = {
  '.html': 'text/html',
'.js': 'text/javascript',
@@ -51,13 +50,13 @@ http.createServer(function (request, response) {
'.svg': 'application/image/svg+xml'
};
- contentType = mimeTypes[extname] || 'application/octet-stream';
+ var contentType = mimeTypes[extname] || 'application/octet-stream';
fs.readFile(filePath, function(error, content) {
if (error) {
if(error.code == 'ENOENT'){
fs.readFile('./404.html', function(error, content) {
- response.writeHead(200, { 'Content-Type': contentType });
+ response.writeHead(404, { 'Content-Type': 'text/html' });
response.end(content, 'utf-8');
});
}