最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Apache needed for NodeJs? - Stack Overflow

programmeradmin1浏览0评论

On my local machine I have set up a web project like toled in a tutorial. I have installed XAMPP and used MySQL and Apache to run my Node.JS backend. Now I'm about to use a external server to host the project and make it available through the internet.

So I have to setup the server and I want to know why I need Apache (from XAMPP) to run the Node.JS backend? I thought the node.js is a web server by itself? So would it be a clever idea to set up the external server again with XAMPP?

When I want to start index.html by the URL could I also do this with the node.js?

On my local machine I have set up a web project like toled in a tutorial. I have installed XAMPP and used MySQL and Apache to run my Node.JS backend. Now I'm about to use a external server to host the project and make it available through the internet.

So I have to setup the server and I want to know why I need Apache (from XAMPP) to run the Node.JS backend? I thought the node.js is a web server by itself? So would it be a clever idea to set up the external server again with XAMPP?

When I want to start index.html by the URL could I also do this with the node.js?

Share edited Oct 5, 2017 at 7:10 PreetyK 4515 silver badges14 bronze badges asked Oct 5, 2017 at 6:55 WeStWeSt 9295 gold badges14 silver badges35 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

No you won't need an Apache server. Because Node itself will serve as a Server Especially if you are working with Frameworks like Express.

We can use Nginx if we want. It's very cosy to some people use Nginx to do the load balance, or even other stuff like handle the https or server static content. It's your choice at the end.

For best performance, though, you'll bine node.js with nginx, depending on the needs of your application. nginx does a better job of serving static files, though at the highest performance for static files will e from using a CDN. Most often, you'll use nginx as a reverse proxy: the web request will be received by nginx, which acts as a load balancer in front of several identical or subdivided servers. If it needs to server static files as well, it will just answer those requests directly.

You do not necessarily need Apache to run Node.js since they both acplish the same thing - answer HTTP requests.

However, they are scenarios where you might use them together. For instance, you might use Apache as a reverse-proxyto Node.js back-end server. Or even use Node.js as the reverse proxy to Apache.

发布评论

评论列表(0)

  1. 暂无评论