Hi,
I need some help to get this reverse proxy vhost up and running in front of Elastic Search running in another Docker container.
I'm also using WSL2, but that shouldn't matter much, as I've made similar setup work with other servers.
I have bound the already present HTTP(80) listener to domain elastic.test, and elastic.test vhost, and vhost's Proxy context is targeting the external app which points to http://elasticsearch:9200, which is gettable using wget from docker exect -it ols_container bash.
Also, I'm not seeing any access to elastic.test in server logs, probably because it's permanently stopped.
This is the vhost.conf:
...and this is the vhosts screen:
I need some help to get this reverse proxy vhost up and running in front of Elastic Search running in another Docker container.
I'm also using WSL2, but that shouldn't matter much, as I've made similar setup work with other servers.
I have bound the already present HTTP(80) listener to domain elastic.test, and elastic.test vhost, and vhost's Proxy context is targeting the external app which points to http://elasticsearch:9200, which is gettable using wget from docker exect -it ols_container bash.
Also, I'm not seeing any access to elastic.test in server logs, probably because it's permanently stopped.
This is the vhost.conf:
Code:
docRoot $VH_ROOT/html
vhDomain elastic.test
errorlog {
useServer 1
logLevel INFO
rollingSize 100M
keepDays 7
}
accesslog {
useServer 1
}
context / {
type proxy
handler elastic.test
addDefaultCharset off
}