• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Plesk shows Apache2 Ubuntu Default page

andostini

New Pleskian
Hey hey,

I have a major issue with plesk wich I cannot resolve.
All domains show the Apache2 Ubuntu Default Page wich says "It works", although apparently nothing seems to work. When I visit my page in https I get a timeout from my browser.

Diagnose & Repair doesn't find any issues nor does the Webserver Configuration Troubleshooter

I already ran this All websites on Plesk server show default Apache page

and I also ran plesk repair web but it came back with Error messages: 0; Warnings: 0; Errors resolved: 0

Any ideas here?

I'd be greatful for some advise

--
I'm calling this resolved as the solution is not to use Plesk anymore in the future. It has given me more then enough headache. Thanks
 
Last edited:
I have the case a few days ago, /etc/httpd/conf/plesk.conf.d/vhosts/ symbolic links was breaks :

for i in $(ls /var/www/vhosts/system/); do if [ ! -f /etc/httpd/conf/plesk.conf.d/vhosts/$i.conf ]; then echo $i; fi; done

had to rebuild all of them

for i in $(ls /var/www/vhosts/system/); do if [ ! -f /etc/httpd/conf/plesk.conf.d/vhosts/$i.conf ]; then ln -s /var/www/vhosts/system/$i/conf/httpd.conf /etc/httpd/conf/plesk.conf.d/vhosts/$i.conf; fi; done
 
I have the case a few days ago, /etc/httpd/conf/plesk.conf.d/vhosts/ symbolic links was breaks :

for i in $(ls /var/www/vhosts/system/); do if [ ! -f /etc/httpd/conf/plesk.conf.d/vhosts/$i.conf ]; then echo $i; fi; done

had to rebuild all of them

for i in $(ls /var/www/vhosts/system/); do if [ ! -f /etc/httpd/conf/plesk.conf.d/vhosts/$i.conf ]; then ln -s /var/www/vhosts/system/$i/conf/httpd.conf /etc/httpd/conf/plesk.conf.d/vhosts/$i.conf; fi; done
Can you elaborate on this please? Step by step...
Thanks :)
 
Back
Top