Stikked with NGINX
2011/09/07
How to get Stikked running with NGINX.
Running Stikked in for example "/p" with the following config and you are done.
location /p {
try_files $uri $uri/ @stikked;
}
location @stikked {
rewrite ^/p/(.*)$ /p/index.php?/$1 last;
}
With the below it didn't work.
location /p {
try_files $uri $uri/ /p/index.php?/$uri;
}

