mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
7 years ago
|
server {
|
||
|
listen 80;
|
||
|
server_name 127.0.0.1;
|
||
|
allow 127.0.0.1;
|
||
|
location /nginx_status {
|
||
|
stub_status on;
|
||
|
access_log off;
|
||
|
}
|
||
|
location /phpfpm_52_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-52.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_53_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-53.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_54_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-54.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_55_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-55.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_56_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-56.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_70_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-70.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_71_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-71.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
location /phpfpm_72_status {
|
||
|
fastcgi_pass unix:/tmp/php-cgi-72.sock;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||
|
}
|
||
|
}
|