|
|
|
|
АРХИВ :: nginx-ru
|
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: nginx+exchange
Igor Muratov пишет:
По всей видимости потребуется вот такая конструкция c rewrite чтобы
поправить URL?
location = / {
rewrite ^ https://nginx.example.org/exchange permanent;
}
location /rpc {
proxy_pass https://192.168.1.201/rpc;
rewrite ^(.*)nginx.example.org(.*)$ $1internal.name$2;
}
2009/07/13 17:00:15 [notice] 29810#0: *16 "^(.*)nginx.example.org(.*)$"
does not match "/rpc/rpcproxy.dll", client: X.X.X.X, server:
nginx.example.org, request: "RPC_OUT_DATA
/rpc/rpcproxy.dll?nginx.example.org:6002 HTTP/1.1", host:
"nginx.example.org"
Эмм.... правильно ли я понимаю что rewrite переписывает только URL но не
параметры?
|
|
|