我需要有关nginx重写的帮助。我有一个运行如下的脚本
http://domain.com:2095/secretkey/something
现在上面的命令自动获取用户IP地址,我想重写如下
https://subdomain.domain.com/secretkey/something
我正在使用以下规则,但它无效。
server
{
listen ip:443;
server_name subdomain.domain.com
location / {
rewrite ^(.*)$ $1?ip=$remote_addr break;
proxy_pass http://127.0.0.1:2095; }
}