in NGINX by
Explain How You Can Start Nginx Through A Different Port Other Than 80?

1 Answer

0 votes
by
To start Nginx through a different port, you have to go to /etc/Nginx/sitesenabled/ and if this is the default file, then you have to open file called “default.” Edit the file and put the port you want

Like server { listen 81; }
...