Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
add a Configfile, like nginx-status.conf, to /etc/nginx/conf.d
Add this to the Conf File:
Code:
server {
listen 127.0.0.1:7777 ## change the port to what you want;
access_log off;
location /nginx_status {
stub_status on;
allow yourHomeIPv4;
allow yourHomeIPv6;
deny all;
}
}
If you want Access from Outside change the 127.0.0.1 to your ServerIP. "yourHomeIP*" is the IP wich have Access to the Status Site