Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Debian linux。我试图让 Nginx 服务器在重启时自动启动。顺便说一句,我可以像这样启动和停止 nginx
$ /etc/init.d/nginx start $ /etc/init.d/nginx stop
我用谷歌搜索,发现必须将脚本添加到 update-rc.d 所以我做了
$ /usr/sbin/update-rc.d -f nginx defaults
但是当我重新启动 Nginx 时,我的网站没有启动我的网站网关坏了!
提前谢谢
您需要检查正在运行的进程和 nginx 日志文件以确定问题的原因。例如,“Bad gateway”可能意味着它nginx实际上已启动但 PHP5 后端(例如php5-fpm)没有运行。
nginx
php5-fpm