Codeigniter, Nginx and Postgres for noobies like me.
Warming up the Nginx for the Codeigniter
March 31, 2009 in Codeigniter by ElToro
Web is full of stories how to setup Apache with all those nice mod rewrites. Nginx has also some documents out there. But when you try to find out documents describing Nginx running Codeigniter it starts to be a bit harder. I hope I can give some light to you. This Blog tries to ease this for you. Stay tuned. Small test here.
Well this is still not full storie, but trying how to code layout looks like.
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
}
}
Responses (1) to "Warming up the Nginx for the Codeigniter"
Leave a reply
Feel free to share your thoughts about this entry.
|
|
|
Could you please post some more info about this subject!