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.
In "Apache & nginx Settings" —
If you put this in both Additional Apache directives HTTP and HTTPS sections: <Directory /path/to/document/root/httpdocs>
AllowOverride None
</Directory>
And this in the Additional nginx directives section: location ~ /\.ht {
deny all;
access_log off;
log_not_found off;
}
if ($scheme = http) {
return 301 https://$server_name$request_uri;
}
You'll be well on the way. Apache will then avoid searching for any .htaccess files in your directory tree and will not read them if they exist, and Nginx will not allow people to read them. All you have to do is put all occurrences of directives you need from the .htaccess files into more <Directory> sections in the Additional Apache directives section to make it all work. Nginx will redirect all the HTTP to HTTPS requests before they even get to Apache. I run several WordPress sites without .htaccess enabled this way — you just have to be alert to the existence of new .htaccess files that are needed and write their contents into the <Directory> directives.