There is a nice tutorial on setting up NGINX here:
Running OXID eShop Community Edition On Nginx
It’s also mentioned in the tutorial sections of oxidforge. Just want to make a correction to the config that’s supplied in the tutorial. It’s actually the same correction I made to a lighttpd config that was posted in the forum here a while back.
The location block
location / {
try_files $uri $uri/ /oxseo.php;
}
should instead be
location / {
try_files $uri $uri/ /oxseo.php?$args;
}
Otherwise you’ll get some erroneous behavior in various locations of the shop because the query string is dropped on the internal redirect.