You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having trouble trying to make Doorman work with Docker and Nginx to be able to access it remotely. I'm new to docker so I might be doing something quite dumb. I hope it's not the case...
# docker container ls
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ef11e83e774f doorman "runsvdir /etc/ser..." 13 seconds ago Up 10 seconds 127.0.0.1:12345->5000/tcp elegant_mcclintock
When I access Doorman from the browser as https://ip:4433 I get a 502.
There are no errors in the error.log from nginx.
Just want to mention that when I run the container with the previous command, it's when I input for the first time both postgres password and doorman secret key. Is that all right?
Netstat shows me how port 5000 and 12345 are listening:
tcp 0 0 0.0.0.0:4433 0.0.0.0:* LISTEN off (0.00/0/0)
tcp 0 0 127.0.0.1:12345 0.0.0.0:* LISTEN off (0.00/0/0)
It looks like the server spend some time processing the request, but eventually it fails.
As I see it, nginx listens at 4433. It passes the request to the host port 12345, where docker is listening and where it sends it back to the docker container port 5000, where doorman should handle it. Am I mistaken?
Any ideas?
The text was updated successfully, but these errors were encountered:
Hi there,
I'm having trouble trying to make Doorman work with Docker and Nginx to be able to access it remotely. I'm new to docker so I might be doing something quite dumb. I hope it's not the case...
I run the Doorman docker container as:
Container listed as:
Nginx configuration:
When I access Doorman from the browser as https://ip:4433 I get a 502.
There are no errors in the error.log from nginx.
Just want to mention that when I run the container with the previous command, it's when I input for the first time both postgres password and doorman secret key. Is that all right?
Netstat shows me how port 5000 and 12345 are listening:
It looks like the server spend some time processing the request, but eventually it fails.
As I see it, nginx listens at 4433. It passes the request to the host port 12345, where docker is listening and where it sends it back to the docker container port 5000, where doorman should handle it. Am I mistaken?
Any ideas?
The text was updated successfully, but these errors were encountered: