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.
If its one site, two domains then the technique we use on 8 and 9 is to create the one domain (the primary) and put all the data on this one, then create the 2nd site and point it to the first using a vhost.conf (and vhost_ssl.conf) that sets the document root to the primary domain. We use mod_php so our vhost.conf would be :
]
DocumentRoot /var/www/vhosts/primary_domain/httpdocs
<Directory /var/www/vhosts/primary_domain/httpdocs>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/tmp:/var/www/vhosts/primary_domain/httpdocs"
</Directory>
Serving the same content on different IP addresses (such as an internal and external address).
The server machine has two IP addresses (192.168.1.1 and 172.20.30.40). The machine is sitting between an internal (intranet) network and an external (internet) network. Outside of the network, the name server.example.com resolves to the external address (172.20.30.40), but inside the network, that same name resolves to the internal address (192.168.1.1).
The server can be made to respond to internal and external requests with the same content, with just one VirtualHost section.
<VirtualHost 192.168.1.1 172.20.30.40>
DocumentRoot /www/server1
ServerName server.example.com
ServerAlias server
</VirtualHost>
Now requests from both networks will be served from the same VirtualHost.
I know this is specific configuration, for internal and external network, but I think i can be run for two external IP's.