我有以下内容:
server {
listen IP;
location /nginx-status {
stub_status on;
access_log off;
allow $IP;
deny all;
}
我的问题是,我需要将它专门插入到我的 nginx.conf 文件的 HTTP 块中。
这是 nginx 配置通常的样子:
http://wiki.nginx.org/FullExample
我不知道这是否可能。我猜如果我在 http 块之后插入会更容易?
理想情况下,我想在 BASH 中执行此操作,但我愿意接受其他选择。