mirror of
https://github.com/openvk/chandler.git
synced 2025-01-22 15:24:15 +03:00
NGINX: PHP-FPM now only works with index.php
Previously it was applied to all PHP files. Or rather, it should have, but libchandler only has one PHP file on htdocs - index.php. Without this fix OpenVK profiles with ".php" in their link would "break".
This commit is contained in:
parent
c6335aea7b
commit
42108cf922
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ server {
|
|||
log_not_found off;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
location ~ \index.php$ {
|
||||
# include fastcgi.conf;
|
||||
include fastcgi_params;
|
||||
# choose one of the above depending on your distribution.
|
||||
|
|
Loading…
Reference in a new issue