Hello Ludovic,
ludo@gnu.... (Ludovic Courtès) writes:
> <?xml version="1.0"?>
>
> <VHOSTS>
> <VHOST>
> <NAME>Every connection</NAME>
> <PORT>8080</PORT>
> <PROTOCOL>HTTP</PROTOCOL>
> <DOCROOT>web</DOCROOT>
> <SYSROOT>system</SYSROOT>
> <HOST>127.0.0.1</HOST>
> <ACCESSLOG>/dev/null</ACCESSLOG>
> <WARNINGLOG>/dev/null</WARNINGLOG>
> <ALLOW_CGI>NO</ALLOW_CGI>
> </VHOST>
> </VHOSTS>
the configuration snippet is not correct. We have added the possibility
to support different channels for the same log file, in order to do it
we had to change the configuration file as well:
<VHOSTS>
<VHOST>
<NAME>Every connection</NAME>
<PORT>8080</PORT>
<PROTOCOL>HTTP</PROTOCOL>
<DOCROOT>web</DOCROOT>
<SYSROOT>system</SYSROOT>
<HOST>127.0.0.1</HOST>
<ACCESSLOG>
<STREAM location="file:///dev/null" cycle="1048576"/>
</ACCESSLOG>
<WARNINGLOG>
<STREAM location="file:///dev/null" cycle="1048576"/>
</WARNINGLOG>
<ALLOW_CGI>NO</ALLOW_CGI>
</VHOST>
</VHOSTS>
I am going to fix the documentation and the way MyServer handles an
incorrect input.
Cheers,
Giuseppe
opensubscriber is not affiliated with the authors of this message nor responsible for its content.