• 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.

Issue Reverse Proxy 500 Error

DragonMaster

Basic Pleskian
Server operating system version
Linux
Plesk version and microupdate number
18
Reverse Proxy 500 Error


▼PleskVersion:Plesk18


▼Reverse Proxy 500 Error


▼Error Log

SSL Proxy requested for Example.com:443 but not enabled [Hint: SSLProxyEngine]
HTTPS: failed to enable ssl support for IP

SSL Proxy requested for Example.com:443 but not enabled [Hint: SSLProxyEngine]
HTTPS: failed to enable ssl support for IP
 
You seem to have a special proxy redirect configuration. The error is not resulting from the default Plesk Nginx proxy setup. It has something to do with a special way to redirect website traffic in a web server or .htaccess configuration. It would look somewhat similar like this there:

RewriteRule ^(.*)$ http://SOURCE.TLD[/DIRECTORY]/$1 [P,L]

The "P" is the proxy option. If you use that, you also need to add these two directives to the "Additional Apache directives" in the "Apache and nginx settings":

ProxyRequests On
SSLProxyEngine On

You may also need to disable "server static files through nginx" options.
 
▼ Current contents
・Directory:TEST123
・Shared server IP address:123.456.789.0

<Location "/TEST123">
ProxyPass https://123.456.789.0
ProxyPassReverse https://123.456.789.0
ProxyPassReverseCookieDomain https://123.456.789.0 example.com
ProxyPassReverseCookiePath / /TEST123/
</Location>

SSLProxyEngine on
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off

<Proxy *>
Order deny, allow
Deny from all
Allow from all
</Proxy>





■ Fix?


<Location "/TEST123">
ProxyPass https://123.456.789.0
ProxyPassReverse https://123.456.789.0
ProxyPassReverseCookieDomain https://123.456.789.0 example.com
ProxyPassReverseCookiePath / /TEST123/
</Location>

RewriteRule ^(.*)$ http://example.com[/TEST123]/$1[P,L]

Proxy Requests On
SSL Proxy Engine On
 
Back
Top