Nginx的配置文件nginx.conf是静态加载还是动态加载?

时间:2018-05-10 11:52:52

标签: nginx nginx-location

nginx会静态加载其nginx.conf文件吗?有没有办法稍后更改文件的内容,是否可以动态更新?如果是的话,怎么做?

1 个答案:

答案 0 :(得分:2)

配置文件将在nginx启动时加载,之后完成的更改将不会加载,直到您重新启动nginx或告诉它重新读取它的配置文件。

# Restarts nginx using systemd (which will reload the configuration)    
systemctl restart nginx

# Reload configuration without shutting down nginx
nginx -s reload
# or with systemd
systemctl reload nginx

# Test configuration without loading it
nginx -t

您可以在nginx documentation

中找到有关此内容的更多信息