nginx configure nodejs proxy server (mac environment)
nginx configure nodejs proxy server (mac environment)
First you need to install nginx, use the following command to install:
brew install nginx
After the installation is completed, the directory of the installed nginx will be displayed.
Configure nginx
cd /usr/local/etc/nginx
Create the directory include and save Configuration of nginx proxy
cd /usr/local/etc/nginx/include/
Create the file nginx.node.conf
Copy the following code to nginx.node.conf
upstream xxx { server 127.0.0.1:3000; #server 127.0.0.1:3001; keepalive 64; } server { listen 80; server_name xxx.test; //配置要代理的域名 access_log /var/log/nginx/test.log; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Nginx-Proxy true; proxy_set_header Connection ""; proxy_pass http://xxx; } }
Edit the file nginx.conf
vim /usr/local/etc/nginx/nginx.conf
Add the code:
include include/*
Edit the file hosts file, Add domain name
vim /etc/hosts
Restart nginx, use the following command
nginx -s reload
// Restart, if permission is prompted, add sudo in front
sudo nginx -s reload

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
