Created
June 27, 2011 15:14
-
-
Save rynop/1049063 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
fastcgi_read_timeout 60; | |
location ^~ /administrator/ { | |
fastcgi_read_timeout 360; | |
fastcgi_send_timeout 360; | |
try_files $uri /index.php?url=$uri&$args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
location ^~ /administrator/ {
try_files $uri @adminfcgi;
}
location @adminfcgi {
rewrite ^ /index.php?url=$uri break;
fastcgi_read_timeout 360;
fastcgi_write_timeout 360;
include fastcgi.conf;
fastcgi_pass php;
}