<br><br><div class="gmail_quote">On Thu, Jun 3, 2010 at 3:44 PM, Paul Bijnens <span dir="ltr"><<a href="mailto:Paul.Bijnens@xplanation.com">Paul.Bijnens@xplanation.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div></div><div class="h5">On 2010-06-03 05:21, sync wrote:<br>
> I recently switched to using Thunderbird for my email and installed the<br>
> Lightning calendar add-on.  Now all I need is a remote calendar server.<br>
> I just need a simple server to support a few personal calendars and a<br>
><br>
>  shared calendar.  Any recommendations for a CentOS / Apache based<br>
</div></div>>  calendar server?/<br>
> /<br>
<br>
I use latest CentOS with this virtual host setting in apache:<br>
<br>
<VirtualHost *:80><br>
     ServerAdmin <a href="mailto:someone.important@example.com">someone.important@example.com</a><br>
     ServerName <a href="http://calendars.example.com" target="_blank">calendars.example.com</a><br>
     DocumentRoot /some/path/to/virthost/calendars<br>
     ErrorLog logs/calendars-error_log<br>
     CustomLog logs/calendars-access_log combined<br>
     <Location /><br>
         DAV on<br>
         AuthType Basic<br>
         AuthName "Calendars"<br>
         AuthUserFile /some/path/to/a/.htpasswd<br>
         <LimitExcept GET HEAD OPTIONS><br>
             Require valid-user<br>
         </LimitExcept><br>
     </Location><br>
</VirtualHost><br>
<br>
<br>
And in thunderbird, publish the calendar with url:<br></blockquote><div><br>That looks nice ~ I would try to use your advice , thanks you and others .<br></div></div>