• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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