Preciso configurar um servidor nginx para que: Se o usuário tiver um cookie específico, o servidor deverá enviar um arquivo, caso contrário, o servidor deverá enviar outro. Li muitos artigos relacionados, mas nada adiantou, também sei que há alguns problemas no try_files
encontro location if
, mas como resolver isso...
Tenho um exemplo que deveria estar funcionando, mas não de fato:
upstream site {
server localhost:4321;
}
server {
listen *:1234;
server_name site.com;
root /path/www/;
ssl on;
ssl_certificate /path/ssl.crt;
ssl_certificate_key /path/ssl.key;
location = / {
set $variable /path/index.html;
if ($http_cookie ~* "someCookie=someValue(?:;|$)") {
set $index_file /path2/index.html;
}
rewrite .* $index_file break;
try_files $uri/index.html $uri.html $uri @site;
}
}
Responder1
Tente algo assim:
if ($cookie_myCookieNameIsBlaBlaBla ~* "cookieValueThatIWannaMatch") {
# my logic in here
}
Apenas lembre-se que de acordo com a documentação do nginx, se for mau, então tome cuidado.
Mais informações:
- http://nginx.org/en/docs/http/ngx_http_rewrite_module.html
- https://www.nginx.com/resources/wiki/start/topics/profundidade/ifisevil/
Cia!
Responder2
Fiz assim, não tenho certeza da melhor solução, mas funciona.
location @rewrite {
if ($http_cookie ~* "someCookie=someValue(?:;|$)") {
rewrite .* /path1/file1.html last;
}
rewrite .* /path2/file2.html last;
}
location = / {
try_files $uri/index.html $uri.html $uri @rewrite;
}