Supposons que la requête arrive sur mon application web comme ceci :
_http://mywebapp/empty.gif?data1=abc&data2=123
En utilisant Nginx
's empty_gif
module, je fais quelque chose comme :
location /empty.gif {
expires -1;
post_action /empty_gif_post;
empty_gif;
}
location = /empty_gif_post {
internal;
proxy_pass http://mywebapp/_track.php;
}
Le problème avec cette approche est qu'elle ne me laisse pas récupérer GET
paramètres.
Une solution à ce problème ?