Initial YakPanel commit
This commit is contained in:
7
vhost/nginx/0.default.conf
Normal file
7
vhost/nginx/0.default.conf
Normal file
@@ -0,0 +1,7 @@
|
||||
server
|
||||
{
|
||||
listen 80;
|
||||
server_name _;
|
||||
index index.html;
|
||||
root /www/server/nginx/html;
|
||||
}
|
||||
64
vhost/nginx/phpfpm_status.conf
Normal file
64
vhost/nginx/phpfpm_status.conf
Normal file
@@ -0,0 +1,64 @@
|
||||
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;
|
||||
}
|
||||
location /phpfpm_73_status {
|
||||
fastcgi_pass unix:/tmp/php-cgi-73.sock;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||||
}
|
||||
location /phpfpm_74_status {
|
||||
fastcgi_pass unix:/tmp/php-cgi-74.sock;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||||
}
|
||||
location /phpfpm_75_status {
|
||||
fastcgi_pass unix:/tmp/php-cgi-75.sock;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user