Hello,
on tests.mysite.com I have tests.mysite.com:8000 where a django server is installed.
But I also would like to have access to tests.mysite.com (port 80), for now, I have configured the vhost conf file with this:
extprocessor proxyapp {
type proxy
address 0.0.0.0:8000
maxConns 100
pcKeepAliveTimeout 60
initTimeout 60
retryTimeout 0
respBuffer 0
}
I would like to know what I need to add in order to have port 80 accessible also. And how to redirect port 80 to a specific folder.
Thanks a lot