我正在尝试限制对某个管理页面的访问。但是,我的 nginx.conf 中有以下配置:
server {
listen 80; ## listen for ipv4; this line is default and implied
root /var/www;
server_name asdf;
location / {
proxy_pass http://192.168.1.1:88/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
#location /server/administrator/ {
# allow 127.0.0.0/24;
# allow my.ip/32;
#}
}
一切都与这个配置一起工作,请求被传递给我在端口 88 上监听的 apache2。但是,当我从我的访问限制中删除评论时,我的 index.php 正在被下载而不是被处理。也许有人以前见过这个?