繁体   English   中英

node.js的内部服务器错误

[英]Internal server error for node.js

我有以下代码使用node.js来提供static / college.html中的网页但是它遇到错误并在浏览器中显示“内部服务器错误:无法读取文件”这是在代码中打印的用于测试的行。

有什么建议以及如何解决这个问题? 谢谢

// Require the functionality we need to use:
var http = require('http'),
        url = require('url'),
        path = require('path'),
        mime = require('mime'),
        path = require('path'),
        fs = require('fs');

// Make a simple fileserver for all of our static content.
// Everything underneath <STATIC DIRECTORY NAME> will be served.
var app = http.createServer(function(req, resp){
        var filename = path.join(__dirname, "static", url.parse(req.url).pathname);
        (fs.exists || path.exists)(filename, function(exists){
                if (exists) {
                        fs.readFile(filename, function(err, data){
                                if (err) {
                                        // File exists but is not readable (permissions issue?)
                                        resp.writeHead(500, {
                                                "Content-Type": "text/plain"
                                        });
                                        resp.write("Internal server error: could not read file");
                                        resp.end();
                                        return;
                                }

                                // File exists and is readable
                                var mimetype = mime.lookup(filename);
                                resp.writeHead(200, {
                                        "Content-Type": mimetype
                                });
                                resp.write(data);
                                resp.end();
                                return;
                        });
                }else{
                        // File does not exist
                        resp.writeHead(404, {
                                "Content-Type": "text/plain"
                        });
                        resp.write("Requested file not found: "+filename);
                        resp.end();
                        return;
                }
        });
});
app.listen(3456);

感谢您的建议到目前为止。 我只是打印这行url.parse(req.url).pathname但它在那里显示为空。 有什么不对吗?

检查文件名,确保它不是目录或null或权限问题。 添加代理以跟踪双向HTTP参数。 并使用phantomjs运行并使用curl命中该站点。

添加单元测试

很可能是权限问题。 尝试修复文件的权限。 或以root身份运行节点

为什么不使用Express框架,它会为您处理静态文件夹。

您也应该使用NginX以可扩展的方式处理静态文件。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM