bug-myserver
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-myserver] Configuration?


From: Giuseppe Scrivano
Subject: Re: [bug-myserver] Configuration?
Date: Fri, 11 Mar 2011 17:11:33 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

Hello Ludovic,

address@hidden (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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]