Hi all,
First of all, I would like to thank you for reading this thread.
OK here goes my problem.
I just installed lighttpd as a proxy for apache to serve static content.
What I have in apache under the Virtualhost is the following:
Code:
<VirtualHost 123.123.123.123>
ServerAdmin xxx@xxx.com
DocumentRoot /var/www/html/xxx/xxx
ServerName xxx.xxx.com
Options -Indexes +FollowSymLinks
ErrorLog logs/xxxxx
CustomLog logs/xxxxxx common
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://0.0.0.0:1234/
ProxyPassReverse / http://0.0.0.0:1234/
</VirtualHost>
But somehow, when I read the logs inside /var/log/lighttpd, all I can see is that 127.0.0.1 as the host.
Can anyone tell me what is wrong??