• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

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