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.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
not really. Is there any possibility to get an SSH login via PM? Or Remote Desktop while you are connected?
Then I could have a look at it without changing everything.
After hours and hours of debugging and searching I found the reason and the solution.
Situation:
Domain with hosting created, after reload of http website won't displayed (only the default website from plesk)
Reason:
In Tools > IP Addresses 2 or more IPs were added, but the main IP had an other Netmask.
Moving the page to the first one (internal ip) allowed me to access the page internally.
Solution:
You have to edit the IP(s) or to delete and recreate them so that all IP(s) have the same Netmask.
After that, all were able to access the websites.
If you can't change the IP, you can delete it via mysql (experimental):
mysql -uadmin -p`cat /etc/psa/.psa.shadow`
use psa;
select * from IP_Addresses WHERE ip_address = '<YOUR IP>';
#Write down the ID
DELETE FROM IP_Addresses WHERE id = '<ID>';
DELETE FROM ip_pool WHERE ip_address_id = '<ID>';
Afterwards you can create the IP again with the correct Netmask.
Be sure, that you have moved all connected domains to another IP!