Я встановив Nginx за допомогою homebrew, і після завершення встановлення з'явилося наступне повідомлення:
In the interest of allowing you to run `nginx` without `sudo`, the default
port is set to localhost:8080.
If you want to host pages on your local machine to the public, you should
change that to localhost:80, and run `sudo nginx`. You'll need to turn off
any other web servers running port 80, of course.
You can start nginx automatically on login running as your user with:
mkdir -p ~/Library/LaunchAgents
cp #{prefix}/org.nginx.nginx.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.nginx.nginx.plist
Though note that if running as your user, the launch agent will fail if you
try to use a port below 1024 (such as http's default of 80.)
Але я хочу, щоб Nginx, на порту 80, працював під час входу, і мені не потрібно відкривати термінал і вводити, sudo nginx
щоб це зробити. Я хочу, щоб він завантажився з файлу плістів, як Redis і PostgreSQL.
Я перемістив пліст на /Library/LaunchAgents/
еквівалентну папку користувача і змінив його право власності, також спробував встановити user
директиву у nginx.conf
файлі та все одно те саме повідомлення про помилку в Console.app:
nginx: [emerg] bind() to 0.0.0.0:80 failed (13: Permission denied)
(разом із ще одним повідомленням, яке говорить мені про те, що оскільки ця програма nginx
працює без привілеїв суперкористувача, user
директива ігнорується)