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
| ### | |
| ### Send other known php requests/files to php-fpm without any caching. | |
| ### | |
| location ~* ^/core/.*\.php$ { | |
| access_log off; | |
| try_files $uri =404; ### check for existence of php file first | |
| fastcgi_pass 127.0.0.1:9000; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment