nginx 中存在和不存在 -g 选项有什么区别?

What is the difference between the presence and absence of the -g option in nginx?

https://en.wikipedia.org/wiki/Debug_symbol

当运行nginx上docker时,我很好奇-g选项。

CMD ["nginx", "-g", "daemon off;"]

搜索维基百科,对我来说太难了。

-g 选项,我可以使用新命令吗?或者还有其他区别吗?

请告诉我。谢谢! :D

NGINX 的 -g 选项用于指定 NGINX 标志,在本例中为 daemon off
它与 GCC 的 -g 选项或提到的维基百科 link.

无关

有关 NGINX 命令行选项,请参阅:

有关 daemon off 设置的说明:

  • What is the difference between nginx daemon on/off option?