Chris1
Regular Pleskian
Hello,
I know this isn't directly related to Plesk but hopefully someone can help me.
I've got a few Plesk servers and in the past activating the server status page on CentOS6 was easy, I just added the following to the /etc/httpd/conf/httpd.conf file:
When I do this on a CentOS7 server, the server status page comes up but it seems to be giving different information. The heading is "Apache Server Status for hostname (via 111.111.111.11)" and all the domains in the vhost column have the port 7080 attached to them and in the client column, all the IP's are that of the server (111.111.111.111). Is this showing the nginx stuff instead of Apache?
The server-status page on my CentOS6 server has the title "Apache Server Status for 222.222.222.222", it doesn't have that "via 222.222.222.222" part, it shows the real IP of the visitor and it doesn't have this port of 7080 attached to the vhost.
Why are these different, how can I get the server status output on the CentOS 7 server similar to that of the CentOS 6 server?
I know this isn't directly related to Plesk but hopefully someone can help me.
I've got a few Plesk servers and in the past activating the server status page on CentOS6 was easy, I just added the following to the /etc/httpd/conf/httpd.conf file:
Code:
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from <my_ip>
</Location>
When I do this on a CentOS7 server, the server status page comes up but it seems to be giving different information. The heading is "Apache Server Status for hostname (via 111.111.111.11)" and all the domains in the vhost column have the port 7080 attached to them and in the client column, all the IP's are that of the server (111.111.111.111). Is this showing the nginx stuff instead of Apache?
The server-status page on my CentOS6 server has the title "Apache Server Status for 222.222.222.222", it doesn't have that "via 222.222.222.222" part, it shows the real IP of the visitor and it doesn't have this port of 7080 attached to the vhost.
Why are these different, how can I get the server status output on the CentOS 7 server similar to that of the CentOS 6 server?