• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Recent content by lola

  1. L

    Issue Blacklist not working properly

    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...
  2. L

    Resolved Combine www- and http-redirects on nginx

    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...
  3. L

    Resolved Combine www- and http-redirects on nginx

    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...
  4. L

    Resolved Combine www- and http-redirects on nginx

    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...
  5. L

    Resolved Combine www- and http-redirects on nginx

    Okay... I think... I'll believe you. Thanks again. ;)
  6. L

    Resolved Combine www- and http-redirects on nginx

    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...
  7. L

    Resolved Combine www- and http-redirects on nginx

    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...
  8. L

    Resolved Combine www- and http-redirects on nginx

    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 -...
  9. L

    Resolved Combine www- and http-redirects on nginx

    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...
  10. L

    Resolved Where can I find server global statistics?

    Hi Igor, thanks for your hint. This isn't comfortable, but it works. ;)
  11. L

    Resolved Where can I find server global statistics?

    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...
  12. L

    Resolved Combine www- and http-redirects on nginx

    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...
Back
Top