Hello DA Community.
I'm working on installing Docker besides DA, My current DA webserver is Apache+nginx.
I read some threads but still, some info is missing.
what I try to do is let Nginx reverse proxy traffic coming to docker.domain.com to a certain docker container.
let's say the subdomain docker.domain.com (DA subdomain) to proxied to 172.17.0.2:8080, what directive should I use, and in which section.
I cant edit the "nginx.conf proxy" in "Custom HTTPD Configurations" or i would just add:
PS Also It would be a great feature to let DA handle docker and the reverse proxy to container like Plesk does (just a drop-down menu in site to pick which docker container to reverse proxy to.)
thanks in advance.
I'm working on installing Docker besides DA, My current DA webserver is Apache+nginx.
I read some threads but still, some info is missing.
what I try to do is let Nginx reverse proxy traffic coming to docker.domain.com to a certain docker container.
let's say the subdomain docker.domain.com (DA subdomain) to proxied to 172.17.0.2:8080, what directive should I use, and in which section.
I cant edit the "nginx.conf proxy" in "Custom HTTPD Configurations" or i would just add:
Code:
location / {
proxy_pass http://127.0.0.1:8000;
}
PS Also It would be a great feature to let DA handle docker and the reverse proxy to container like Plesk does (just a drop-down menu in site to pick which docker container to reverse proxy to.)
thanks in advance.