• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Question Add Location entry into NGINX Conf

JaXnPriVate

New Pleskian
Server operating system version
Ubuntu
Plesk version and microupdate number
-
I have seen that you can get the WebServer Object.

The only question is, what does this do for me, all variables are protected and it was nowhere described what the getParameter method does.

 
Hi! In case you'd like to add some sort of the custom configuration, you need to implement a corresponding hook and its methods, e.g.:
PHP:
<?php

class Modules_ExampleModule_WebServer extends \pm_Hook_WebServer
{
    public function getDomainNginxConfig(pm_Domain $domain)
    {
        return <<<EOL
            location /test/location/ { return 444; }
            EOL;
    }

    public function getDomainNginxProxyConfig(pm_Domain $domain)
    {
        return <<<EOL
            location /test/location/ { return 444; }
            EOL;
    }
}
Note that this hook in not PSR-4 compatible, namespaces are not supported there, so you will have to use the legacy underscore-separated name for this class. For the full list of methods that can be implemented in this hook you may refer to the pm-api-stubs: Documentation

This hook should be located in the src/plib/hooks directory of the extension:
Bash:
╰─ ls -la src/plib/hooks/WebServer.php
-rw-r--r-- 1 abashurov abashurov 773 Jan 11 11:19 src/plib/hooks/WebServer.php
 
Back
Top