• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

How to use a DMZ Proxy with linux plesk

MikeSand

New Pleskian
Plesk support kept asked me to: "set it in the operating system." It turns out it was in their software configs.


Edit the file:
/etc/sw-engine/pool.d/plesk.conf

add the http_proxy, https_proxy variables, and no_proxy in the following format
for this example my proxy is called "myproxy.myhost" and its on port 8080


Code:
; for this example my proxy is called "myproxy.myhost" and its on port 8080
; and my ipaddress is 192.168.1.10
; and my hostname is myhost.mydomain
; the no_proxy is needed so that previews work

env[http_proxy] = 'myproxy.myhost:8080'
env[https_proxy] = 'myproxy.myhost:8080'
env[no_proxy] = '127.0.0.1,192.168.1.10,myhost.mydomain,myhost,.mydomain'


You can then restart the "sw-engine" with the command

Code:
pushd /etc/init.d;for x in sw*; do service $x restart; done; popd
 
Back
Top