Deploying the Origin Server (Nginx)
- Modify the nginx.conf file.
- Open nginx.conf.
vim nginx.conf
- Press i to enter the insert mode. Based on the Nginx proxy configuration, replace line 36 with the following content:
listen 80 reuseport;

- Press Esc, type :wq!, and press Enter to save the file and exit.
- Open nginx.conf.
- Specify the configuration file to start Nginx.
1/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
Parent topic: Component Deployment