Amazon EC2 Error: listen EACCES 0.0.0.0:80

Source:  https://stackoverflow.com/questions/51020596/amazon-ec2-error-listen-eacces-0-0-0-080


You cannot run a process that listens on low ports (below 1024) without root privileges.
You either try to run as sudo, as stated above, or start to use a reverse proxy (nginx for instance), start the process on another port and use the reverse proxy to forward the calls from port 80 to whatever port you started the process on.

Không có nhận xét nào:

URL parameters with React Router

 https://ui.dev/react-router-url-parameters If you're reading this, you're probably familiar with the idea of function parameters. T...