Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- location /flashservices/ {
- try_files $uri @dynamic;
- }
- ###
- ### send all not cached requests to php-fpm with clean URLs support
- ###
- location @dynamic {
- rewrite ^/(.*)$ /index.html last;
- }
- ###
- ### send all non-static requests to php-fpm
- ###
- location ~ /flashservices/\.php$ {
- try_files $uri @dynamic; ### check for existence of php file first
- fastcgi_pass 127.0.0.1:9000; ### php-fpm listening on port 9000
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement