Forever+nginx deployment method example of Node site

Forever+nginx deployment method example of Node site

I recently bought the cheapest Tencent cloud server, which is mainly used to deploy my personal blog and learn some liunx knowledge, so as to fully understand and master web technology. It is strongly recommended that front-end personnel have their own server. Before writing this article, My cloud server has already installed Mysql, node, nginx, etc. Let's take the deployment of a node website as an example to explain several common scenarios

Threads run persistently

Generally speaking, we start a server through node index.js on the window cmd. As long as it is not closed, we can always access and call the interface. However, on Linux, if you do not operate for a long time or you want to perform other operations, your node service will be disconnected and users will not be able to access your website. what to do? We can install the forever module to solve this problem.

npm install forever -g // Globally install the forever module

Just change the original startup method node index.js to forever start index.js. Here are some common commands

forever list // List all currently running services forever start -w index.js // Automatically restart on file change forever stopall // Stop all services forever stop app.js // Stop one of the node Apps 
forever stop [id] // forever list finds the corresponding id, then

Of course there are many more commands, you can refer to the relevant modules. Generally speaking, the simplest way to use it is:

forever start index.js

In this way, even if we switch to other Linux paths or exit, the node service still exists, that is, others can still access your website.

Configure nginx

nginx is a reverse proxy server developed by Russians and is now used by many companies around the world. For the introduction and installation of nginx, you can read the information yourself or learn quickly from the novice tutorial. Here my Linux has already installed nginx.

Next, I will use nginx to proxy http://localhost:8089 that was just started by forever start index.js, that is, to access the website http://localhost:8089 through my domain name. View the nginx configuration file path

find / -name nginx.conf 

Switch to it and modify the configuration inside

 server {
  listen 80; # Just configure the listening port to 80 server_name hellocode.xyz; # Enter the domain name and it will jump to http://localhost:8089
  include /etc/nginx/default.d/*.conf;
  location / {
   proxy_pass http://118.89.33.75:8089; # Your node website application}
  error_page 404 /404.html;
    location = /40x.html {
  }
  error_page 500 502 503 504 /50x.html;
    location = /50x.html {
  }
}

Exit to check whether the configuration is correct

nginx -t 

Reload nginx

nginx -s reload

Open the browser and enter the URL to access the website!

You may encounter cross-domain problems during the access process, so you need to set up the node side to support cross-domain. For the express framework, customize a middleware in index.js

var allowCors = function(req, res, next) {
 res.header('Access-Control-Allow-Origin', req.headers.origin);
 res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
 res.header('Access-Control-Allow-Headers', 'Content-Type');
 res.header('Access-Control-Allow-Credentials','true');
 next();
};
app.use(allowCors); //Use cross-domain middleware

Regarding cross-domain issues, the following blog will explain in detail!

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Tutorial on configuring GZip compression when using Nginx as a reverse proxy for Node.js sites
  • Abandon Nginx and use nodejs as a reverse proxy server
  • Nginx+SSL+Node.js operating environment configuration tutorial
  • How to use Nginx as a reverse proxy for Node.js
  • Detailed steps to deploy https on Alibaba Cloud using nginx + node
  • Summary of how to set Nginx as a front-end server for Node.js

<<:  Detailed explanation of performance optimization ideas for React functional components

>>:  Pitfalls encountered when installing the decompressed version of MySQL 5.7.20 (recommended)

Recommend

How to create an index on a join table in MySQL

This article introduces how to create an index on...

MySQL method steps to determine whether it is a subset

Table of contents 1. Problem 2. Solution Option 1...

Sample code on how to implement page caching in vue mobile project

background On mobile devices, caching between pag...

Javascript common higher-order functions details

Table of contents 1. Common higher-order function...

JavaScript to achieve a simple countdown effect

This article example shares the specific code of ...

Summary of things to pay attention to in the footer of a web page

Lots of links You’ve no doubt seen a lot of sites ...

Vue integrates Tencent Map to implement API (with DEMO)

Table of contents Writing Background Project Desc...

Detailed explanation of Vue plugin

Summarize This article ends here. I hope it can b...

How to use nginx to build a static resource server

Taking Windows as an example, Linux is actually t...

A case study on MySQL optimization

1. Background A sql-killer process is set up on e...

js to achieve sliding carousel effect

This article shares the specific code of js to ac...

JavaScript tips to help you improve your coding skills

Table of contents 1. Filter unique values 2. Shor...

Vue improves page response speed through lazy loading

Table of contents Overview What is lazy loading? ...

Measured image HTTP request

Please open the test page in a mainstream browser...

MySQL transaction isolation level details

serializable serialization (no problem) Transacti...