• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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