Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
PostPosted: Thu May 09, 2013 6:25 pm 
Offline
Senior Newbie

Joined: Wed Sep 08, 2010 5:13 pm
Posts: 14
Website: http://tds-solutions.net
AOL: sorressean
Location: Massachusetts
hello all:
I have the following nginx configuration. I'm trying (vainly apparently) to configure it so that it works with code igniter. mydomain.com is my real website, mydomain.com/web is the app I'm trying to make work. Eventually I'll move the app to the root, but it's a workup of my current site using ci.
I can access mydomain.com/web, but mydomain.com/web/about errors because it can't open /var/www/web/page/about.
Thanks,
server {
root /var/www/tysdomain.com;
index index.html index.htm index.php;
# location / {
# }
location /web {
try_files index.php;
}
location ~* \.(ico|png|css|js|jpg|jpgeg)$ {
expires max;
log_not_found off;
}
location ~ \.php$ {
#try_files $uri = 404;
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}

_________________
Take care,
Ty


Top
   
PostPosted: Thu May 09, 2013 6:53 pm 
Offline
Senior Member

Joined: Sun Mar 07, 2010 7:47 pm
Posts: 1970
Website: http://www.rwky.net
Location: Earth
You probably want try_files $uri /web/index.php; it'll try the uri first i.e. if there is a static resource under web then pass everything else to /web/index.php

_________________
Paid support
How to ask for help
1. Give details of your problem
2. Post any errors
3. Post relevant logs.
4. Don't hide details i.e. your domain, it just makes things harder
5. Be polite or you'll be eaten by a grue


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group