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

Issue Error 502 when enabling Docker Proxy Rules.

crospa91

New Pleskian
Hi all, today im trying to enable Memcached on my domain on my VPS using Plex Obsidian.
I can build the docker container with no problem and no issue happen there.
The website it's working correctly on it's domain ( networny.com) (Careful that the website it's NSFW)
Everything works absolutely fine, but when I activate the docker proxy rule to expose the memcached port 11211 on the domain, using the Plesk interface:
Screenshot 2020-04-29 at 13.55.58.png
After I save it the webserver goes straight into error 502 for the domain. If I map the port to a subdirectory let's say /memcached no error 502 but I can't connect to Memcached at all.
What I am doing it wrong?
this is the log of the domain during the 502 error.

Code:
2020-04-29 14:38:33    Error    188.172.148.154    502    GET / HTTP/2.0        Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15    150    nginx SSL/TLS access
2020-04-29 14:38:33    Error    188.172.148.154    502    GET / HTTP/2.0        Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15    150    nginx SSL/TLS access

it's a generic 502 error on the SSL with no explanation at all.

I don't now if its correlated or not, but since a couple of days my Wordpress was pointing me that the website cannot do LoopBack Connection to itself for example when running a cron command. Can this be the same issue?

This is the syntax I've put into NGINX to forward the port, even if I do it manually without using the docker proxy setting the same 502 error happen when I connect to networny.com

NGINX:
#extension docker begin
location ~ ^/.* {
    proxy_pass http://0.0.0.0:11212;
    proxy_set_header Host              $host;
    proxy_set_header X-Real-IP         $remote_addr;
    proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
}

#extension docker end

I had to remove this now because the website need to be online, but I can't really figure it out what's wrong here.


Thanks
 
Last edited:
Back
Top