Skip to content

Instantly share code, notes, and snippets.

@phongphan
Created October 3, 2014 11:56
Show Gist options
  • Save phongphan/eb6cdab47ee0a3f9f526 to your computer and use it in GitHub Desktop.
Save phongphan/eb6cdab47ee0a3f9f526 to your computer and use it in GitHub Desktop.
location ~* ^/who/.*\.(js|jpg|jpeg|css ... others ...)$ {
root /var/www/who/public;
rewrite ^/who/?(.*)$ /$1 break;
try_files $uri =404;
expires max;
access_log off;
}
location ^~ /who {
alias /var/www/who/public;
try_files $uri $uri/ @who;
location ~* \.php {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(.*)$;
include fastcgi_params;
}
}
location @who {
rewrite ^/who/?(.*)$ /who/index.php/$1 last;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment