can i use codeigniter with nginx? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: can i use codeigniter with nginx? (/showthread.php?tid=206) |
can i use codeigniter with nginx? - agriz - 11-11-2014 I am not using apache on my server. Is it possible to use codeigniter with nginx? Thanks RE: can i use codeigniter with nginx? - tacohajo - 11-11-2014 (11-11-2014, 01:34 AM)agriz Wrote: I am not using apache on my server. Is it possible to use codeigniter with nginx? Yep Sure! Works like a charm! Any help setting up let me know? Cheers. RE: can i use codeigniter with nginx? - marcogmonteiro - 11-11-2014 Sure you can, i've been using it like that on tons of projects. RE: can i use codeigniter with nginx? - Rufnex - 11-11-2014 ci can be used on all major server an os because its a non exotic php framework ;o) RE: can i use codeigniter with nginx? - nitinksoni - 11-11-2014 Yes, you can use CI over nginx (Engine X). CI is basically a PHP based framework. So, you need a web server to handle your request and responses and run your codes. A web server may be apache, nginx, IIS or PHP inbuilt web server. If you want to install and setup nginx on Ubuntu. You can refer to http://getweblessons.com/install-configure-nginx-ubuntu-14-04/. Let me know if you need any more help. Nitin RE: can i use codeigniter with nginx? - onebeat - 11-12-2014 (11-11-2014, 01:34 AM)agriz Wrote: I am not using apache on my server. Is it possible to use codeigniter with nginx? Hello, that is the same question that i was wondering one year ago. O yeah yes you can and very easily This is part of my configuration for CI on nginx PHP Code: location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ { RE: can i use codeigniter with nginx? - RogerMore - 12-12-2014 Ok you guys, As there are some nginx experts in here... Maybe one of you can be of assistance. I'm trying to figure out for some time to get a CI project working on a new server running nginx. I have tried a couple of things but nothing seems to work. Apache was never a problem, but because I am a complete newby on nginx configuration I can't get things to work. My standard nginx config is the following: Code: server { How can I change things so that stuff like rewriting etc. works..? I found this article about a nginx config with a very rich featured config I really want to use: http://www.farinspace.com/codeigniter-nginx-rewrite-rules/ Does anyone know how I can change my config and add the cool features from the article above? Thanks in advance, -Roger RE: can i use codeigniter with nginx? - abeni_ab - 09-29-2020 hey there might be an overdue answer , thou this Que. has been bugging me for a day best link to check out is https://gist.github.com/yidas/30a611449992b0fac173267951e5f17f my config first thing is first dont forget to backup ur config + change .htaccess file like RewriteEngine on RewriteCond $1 !^(index.php|resources|robots.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA] on CodeIgniter side application/config/config.php $config['base_url'] = ''; $config['index_page'] = 'index.php'; $config['uri_protocol'] = 'REQUEST_URI'; on Nginx side server_name domainname.ts; server_name 192.168.0.7; // local ip address listen 127.0.0.1:80; listen *:80; location ~* \.php$ { fastcgi_pass php_farm; include nginx.fastcgi.conf; } location / { # Check if a file or directory index file exists, else route it to index.php. try_files $uri $uri/ /index.php; } # Deny for accessing .htaccess files for Nginx location ~ /\.ht { deny all; } #hope this works for future request, |