• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • 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.

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