具体的な手順は次のとおりです:
新しい nginx.service ファイルを作成します
vim /lib/systemd/system/nginx.service
内容:
[Unit] Description=nginx service After=network.target [Service] Type=forking ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ExecReload=/usr/local/nginx/sbin/nginx -s reload ExecStop=/usr/local/nginx/sbin/nginx -s quit PrivateTmp=true [Install] WantedBy=multi-user.target
自動的に開始します起動後
systemctl enable nginx.service
関連する推奨事項: nginx チュートリアル
以上が起動時にnginxが自動的に起動するように設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。