我偶然发现了一种通过反复试验而起作用的配置。但是我无法判断我是否做得不好。 https://www.nginx.com/blog/setting-up-nginx/我已使用本指南来设置一些文件和文件夹,但随后对其进行了更改以使其适用于节点和端口3000。
这是我在文件夹/ home / ubuntu / server中的index.js文件
var http=require('http');
var server=http.createServer(function(req,res){
res.end('tudor');
});
server.on('listening',function(){
console.log('ok, server is running');
});
server.listen(3000);
index.js (END)
/etc/nginx/conf.d$减少server1.conf
server {
root /home/ubuntu/public_html;
location /application1 {
proxy_pass http://localhost:8080/sampleApp;
}
location /images {
root /home/ubuntu/data;
}
location / {
proxy_pass http://localhost:3000;
}
}
这有什么问题吗?