Your IP : 18.188.155.223


Current Path : /etc/nginx/vhosts-includes/
Upload File :
Current File : //etc/nginx/vhosts-includes/phpmyadmin-nginx.conf

location /TUYea70sZLePXBGE/phpmyadmin {
	alias /usr/share/phpMyAdmin;
	index index.php;
}
location ~* ^/TUYea70sZLePXBGE/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
	alias /usr/share/phpMyAdmin/$1;
	error_page 404 @apache;
}
location ~ ^/TUYea70sZLePXBGE/phpmyadmin/(.+\.php)$ {
	alias /usr/share/phpMyAdmin/$1;
	fastcgi_pass unix:/var/run/php-fpm.apache.sock;
	fastcgi_index index.php;
	fastcgi_param SCRIPT_FILENAME $request_filename;
	include fastcgi_params;
	error_page 502 = @apache;
	error_page 404 = @apache;
}
location @apache {
	error_log /dev/null crit;
	proxy_pass http://127.0.0.1:8080;
	proxy_redirect http://127.0.0.1:8080 /;
	proxy_set_header Host $host:$server_port;
	proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	proxy_set_header X-Forwarded-Proto $scheme;
}

location ^~ /TUYea70sZLePXBGE/phpmyadmin/setup {
	deny all;
}