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.
Hi,
in the plesk 12.5.30 (Up.56) control panel -> server management -> tools -> e-mail -> mailserver settings I add nearly every day new domains at the blacklist. But now I see, that some of the added domains will not blocked from receiving by my e-mail accounts. What's up? Any ideas?
My...
Basically, you're right. I WANT to have all requests as https. But what about a user that type in "mydomain.de"? If I do not redirect him to "https://www.mydomain.de" he could not see my website, right? At this point, WMT will not help. ;)
And: I want avoid, that a user links to...
I found my solution. Hm.. it's so easy:
if ($server_name = mydomain.de) { set $domain https://www.mydomain.de; }
if ($scheme = http) { return 301 $domain$request_uri; }
That it is! So I redirect non-www to www-request AND deliver it as https!
The problem was, that I get everytime a redirect...
I'm back again. :(
I don't know why, but since a few days, my redirection doesn't work anymore. When I open the website in my browser, it shows: "redirect error" and "The called website redirects the request so that it can never be terminated."
I used the following code in the nginx extension...
BUT: Google Pagespeed Insights will not interpret this redirect to https! If I put in the URL "http://mydomain.de" in the Google Pagespeed Insights form field, Google doesn't interpret the needed redirect to "https://mydomain.de". That's the problem.
And: If it's okay, as you said, why I get a...
Hm... thanks for the pingdom tip. It's... :(
pingdom shows me already two redirects. It seems, that the first request is "http://mydomain.de" and then - after the redirect rule - the new one "https://www.mydomain.de". I hoped, that the nginx rules would take it in ONE request. But pingdom says...
Hm... okay. I think I understood the system you mean. So I tried the following:
if ($server_name = mydomain.de) { set $domain www.mydomain.de; }
if ($server_name = www.mydomain.de) { set $domain www.mydomain.de; }
if ($scheme = http) { return 301 https://$domain$request_uri; }
Pro: It works -...
Hi Peter,
like I said - I did it - in the hosting settings. So my idea was to clean the hosting settings (to "no prefered domain") and put this redirect into the nginx command. Exactly this is my problem. How can I combine both - the non-www to www redirect and the non-htttps to https redirect...
Hi there,
I use plesk 12.5 on a linux machine. Is there any possibility (option in plesk) where I can check the used database disk space? I mean not the used database disk space of each abonnement. I mean the server global diskspace. I only find a note that shows the hole used disk space (inkl...
Hi there,
actually I use PHP7 with FPM@nginx for my website which uses ssl (https). For this, I use the following code in the nginx section:
if ($scheme = http) {
return 301 https://$server_name$request_uri;
}
In the hosting configuration of my abo I set the preferred domain as "www", so I...