What's the better approach: serving static files with Express or nginx?

后端 未结 2 1520
一个人的身影
一个人的身影 2020-12-14 01:12

I\'m building a Node.js applications and I\'m using nginx as a reverse proxy. My application has some static files I need to serve and a Socket.io server.

I know th

2条回答
  •  旧时难觅i
    2020-12-14 01:46

    The Express documentation explicitly recommends using a reverse proxy where possible. To quote from this article:

    Nginx can do a much better job of handling static files and can prevent requests for non-dynamic content from clogging our node processes.

    There's an awful lot of articles discussing the subject which go into greater detail, but I would definitely heed the recommendations made by the Express developers.

提交回复
热议问题