Welcome Guest, Not a member yet? Register   Sign In
can i use codeigniter with nginx?
#6

(11-11-2014, 01:34 AM)agriz Wrote: I am not using apache on my server. Is it possible to use codeigniter with nginx?

Thanks

Hello,

that is the same question that i was wondering one year ago.

O yeah yes you can and very easily Wink

This is part of my configuration for CI on nginx

PHP Code:
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
log_not_found off;
}
 
location / {
# Check if a file or directory index file exists, else route it to index.php.
try_files $uri $uri/ /index.php;

Reply


Messages In This Thread
can i use codeigniter with nginx? - by agriz - 11-11-2014, 01:34 AM
RE: can i use codeigniter with nginx? - by Rufnex - 11-11-2014, 04:31 AM
RE: can i use codeigniter with nginx? - by onebeat - 11-12-2014, 11:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB