11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
|
upstream _php {
|
||
|
server unix:/sock/fpm.sock;
|
||
|
}
|
||
|
server {
|
||
|
listen 80;
|
||
|
location ~ ^/index\.php(/|$) {
|
||
|
fastcgi_pass _php;
|
||
|
include fastcgi_params;
|
||
|
}
|
||
|
}
|