我正在尝试从端口80上的主管运行daphne,但错误日志显示“无法收听0.0.0.0:80:[Errno 13]权限被拒绝。”
我的达芙妮主管配置:
[program:daphne]
directory=/home/my-project/my-project
command=/usr/bin/python2.7 /usr/local/bin/daphne my_project.asgi:channel_layer --port 80 --bind 0.0.0.0 -v2
user=my-project-user
autostart=true
autorestart=true
stderr_logfile=/var/log/daphne_worker.err.log
stdout_logfile=/var/log/daphne_worker.out.log
但是,当我使用SUDO从终端运行时,它可以完美地运行,任何解决方案?