Created
July 19, 2010 01:02
-
-
Save farinspace/480872 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NGINX CodeIgniter Config | |
server | |
{ | |
server_name .organizetheweb.com; | |
access_log /var/log/nginx/organizetheweb.com.access.log; | |
root /var/www/organizetheweb.com/trunk; | |
index index.php index.html index.htm; | |
# enforce www (exclude certain subdomains) | |
# if ($host !~* ^(www|subdomain)) | |
# { | |
# rewrite ^/(.*)$ $scheme://www.$host/$1 permanent; | |
# } | |
# enforce NO www | |
if ($host ~* ^www\.(.*)) | |
{ | |
set $host_without_www $1; | |
rewrite ^/(.*)$ $scheme://$host_without_www/$1 permanent; | |
} | |
# if your default controller is something other than "welcome" you should change the following | |
if ($request_uri ~* ^(/welcome(/index)?|/index(.php)?)/?$) | |
{ | |
rewrite ^(.*)$ / permanent; | |
} | |
# removes trailing "index" from all controllers | |
if ($request_uri ~* index/?$) | |
{ | |
rewrite ^/(.*)/index/?$ /$1 permanent; | |
} | |
# removes trailing slashes (prevents SEO duplicate content issues) | |
if (!-d $request_filename) | |
{ | |
rewrite ^/(.+)/$ /$1 permanent; | |
} | |
# removes access to "system" folder, also allows a "System.php" controller | |
if ($request_uri ~* ^/system) | |
{ | |
rewrite ^/(.*)$ /index.php?/$1 last; | |
break; | |
} | |
# unless the request is for a valid file (image, js, css, etc.), send to bootstrap | |
if (!-e $request_filename) | |
{ | |
rewrite ^/(.*)$ /index.php?/$1 last; | |
break; | |
} | |
# catch all | |
error_page 404 /index.php; | |
# use fastcgi for all php files | |
location ~ \.php$ | |
{ | |
fastcgi_pass 127.0.0.1:9000; | |
fastcgi_index index.php; | |
fastcgi_param SCRIPT_FILENAME /var/www/organizetheweb.com/trunk$fastcgi_script_name; | |
include fastcgi_params; | |
} | |
# deny access to apache .htaccess files | |
location ~ /\.ht | |
{ | |
deny all; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment