Adrian Sánchez López | 4 Jan 2010 23:26
Picon

How update Cherokee 0.99.19

 
Hello
 
I've installed cherokee 0.99.19 from the repositorios of ubuntu. But i don't understand how to update the most recent version, could you please explain to me step by step?
 
Im using Ubuntu 9.10 Karmic Koala
 

Adrián Sánchez López
_______________________________________________
Cherokee mailing list
Cherokee <at> lists.octality.com
http://lists.octality.com/listinfo/cherokee
Leonel Nunez | 5 Jan 2010 01:32

Re: How update Cherokee 0.99.19

> **
> *Hello*
> **
> *I've installed cherokee 0.99.19 from the repositorios of ubuntu. But i
> don't understand how to update the most recent version, could you please
> explain to me step by step?*
> **
> *Im using Ubuntu 9.10 Karmic Koala*
>
>
> Adrián Sánchez López
>
> _______________________________________________
> Cherokee mailing list
> Cherokee <at> lists.octality.com
> http://lists.octality.com/listinfo/cherokee
>
>

Add this line to your /etc/apt/sources.list:

deb http://ppa.launchpad.net/cherokee-webserver/ubuntu karmic main

then update your package sources with :

sudo apt-get update

then upgrade your packages:

sudo apt-get upgrade

This will get you the latest and greatest cherokee

Saludos

Leonel
Adrian Sánchez López | 5 Jan 2010 16:16
Picon

Thanks for your help !!!!

Thanks.
 
I can see the new version of cherokee.
 
 
Now to install Moodle.
 
 

Adrián Sánchez López


2010/1/5 <cherokee-request <at> lists.octality.com>
Send Cherokee mailing list submissions to
       cherokee <at> lists.octality.com

To subscribe or unsubscribe via the World Wide Web, visit
       http://lists.octality.com/listinfo/cherokee
or, via email, send a message with subject or body 'help' to
       cherokee-request <at> lists.octality.com

You can reach the person managing the list at
       cherokee-owner <at> lists.octality.com

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Cherokee digest..."


Today's Topics:

  1. How update Cherokee 0.99.19 (Adrian S?nchez L?pez)
  2. Re: How update Cherokee 0.99.19 (Leonel Nunez)


----------------------------------------------------------------------

Message: 1
Date: Mon, 4 Jan 2010 16:26:26 -0600
From: Adrian S?nchez L?pez <sanz.webmail <at> gmail.com>
Subject: [Cherokee] How update Cherokee 0.99.19
To: cherokee <at> lists.octality.com
Message-ID:
       <311fd2e81001041426n19d636deqa2c9c4380f99503e <at> mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

**
*Hello*
**
*I've installed cherokee 0.99.19 from the repositorios of ubuntu. But i
don't understand how to update the most recent version, could you please
explain to me step by step?*
**
*Im using Ubuntu 9.10 Karmic Koala*


Adri?n S?nchez L?pez
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.octality.com/pipermail/cherokee/attachments/20100104/8dc3626a/attachment.html

------------------------------

Message: 2
Date: Mon, 4 Jan 2010 17:32:17 -0700 (MST)
From: "Leonel Nunez" <listas <at> enelserver.com>
Subject: Re: [Cherokee] How update Cherokee 0.99.19
To: Adrian S?nchez L?pez <sanz.webmail <at> gmail.com>
Cc: cherokee <at> lists.octality.com
Message-ID:
       <27873.189.155.221.248.1262651537.squirrel <at> webmail.enelserver.com>
Content-Type: text/plain;charset=iso-8859-1

> **
> *Hello*
> **
> *I've installed cherokee 0.99.19 from the repositorios of ubuntu. But i
> don't understand how to update the most recent version, could you please
> explain to me step by step?*
> **
> *Im using Ubuntu 9.10 Karmic Koala*
>
>
> Adri?n S?nchez L?pez
>
> _______________________________________________
> Cherokee mailing list
> Cherokee <at> lists.octality.com
> http://lists.octality.com/listinfo/cherokee
>
>

Add this line to your /etc/apt/sources.list:

deb http://ppa.launchpad.net/cherokee-webserver/ubuntu karmic main

then update your package sources with :

sudo apt-get update

then upgrade your packages:

sudo apt-get upgrade

This will get you the latest and greatest cherokee

Saludos

Leonel




------------------------------

_______________________________________________
Cherokee mailing list
Cherokee <at> lists.octality.com
http://lists.octality.com/listinfo/cherokee


End of Cherokee Digest, Vol 19, Issue 1
***************************************

_______________________________________________
Cherokee mailing list
Cherokee <at> lists.octality.com
http://lists.octality.com/listinfo/cherokee
Stefan de Konink | 5 Jan 2010 18:38
Picon
Gravatar

Preventing a double gzipping

Hi all,

Difficult design choice.
http://code.google.com/p/cherokee/issues/detail?id=484

The following scenarios exist:

index.html.gz
theworld.kmz

Now Alvaro's opinion is to send these files as:
index.html.gz; content-type: text/html content-encoding: gzip
theworld.kmz; content-type: application/vnd.google-earth.kml+xml
  content-encoding: gzip

I'm against this because of the following:
1) I *think* that the file is stored on disk as index.html.gz, 
theworld.kmz but it is not gzipped anymore, actually it would be inflated.
2) The compressed file can have a completely different content type. 
This counts for kmz but also svgz. For example: 
application/vnd.google-earth.kmz

My suggestion would be informing the mimetype list with the fact that a 
mimetype or extention is already compressed. And not apply the deflate 
or gzip algorithm again on this file. The file is served with the 
specified content type, thus a .gz as gzip, a kmz as 
vnd.google-earth.kmz. But these types will not be 'recompressed'.

Additionally I would suggest not to send the compressed version if the 
compressed version equals or exceeds the uncompressed filelength + 
compression header.

Stefan
Alvaro Lopez Ortega | 5 Jan 2010 19:07
Favicon
Gravatar

Re: Preventing a double gzipping

On 05/01/2010, at 18:38, Stefan de Konink wrote:

> My suggestion would be informing the mimetype list with the fact that a 
> mimetype or extention is already compressed. And not apply the deflate 
> or gzip algorithm again on this file. The file is served with the 
> specified content type, thus a .gz as gzip, a kmz as 
> vnd.google-earth.kmz. But these types will not be 'recompressed'.
> 
> Additionally I would suggest not to send the compressed version if the 
> compressed version equals or exceeds the uncompressed filelength + 
> compression header.

I'm just thinking..

Currently, Cherokee allows to define whether or not the content matched by a rule should be gzipped. There
is a checkbox under the “Allow GZip” that can be turn on and off.

If we changed that, and instead it showed two options like ‘allowed’ and ‘forbidden’, you could
add a rule to stop kmz files from being encoded.

Content would only be encoded when gzip is set to allowed and the client requested so. However, if a
‘forbidden’ entry were find while evaluating the rules, the server would never encode the reply even
if a later rule tried to activate it later on. For instance:

- Extension kmz,       Gzip ‘forbidden’
- Extension /download, Gzip ‘allowed’

In this case, http://example.com/download/foo.kmz would not be gziped.

It's quite similar to the current mechanism, but somehow slightly more flexible.
This change would be a positive improvement, although I still feel like it is not enough.

How is the rest of the servers work at this respect?
That'd be a good starting point..

--
Octality
http://www.octality.com/
dearknarl | 6 Jan 2010 07:39
Picon

Cherokee server assessable only at "localhost"

Gday,

An upgrade on my Debian unstable box a few weeks ago broke cherokee. I
reconfigured from scratch using cherokee-admin, hoping to fix the
problem I thought was related to config format upgrade, but it
persists.

I have the server listening on ports 80 and 443 (https) with no
bindings. I can access it no problem on the host machine using
"http://localhost" and "https://localhost", but if I use the ip
address (either the LAN address or the external) it tells me the site
isn't found.

It might be worth noting I can't even use the loopback device address,
127.0.0.1, only localhost.

I can post versions and config file and host file later (at work right
now), but just seeing if anyone has any ideas?

Regards,
Neil .
Adrian Sánchez López | 6 Jan 2010 08:50
Picon

Error at the execute cherokee-admin

I upgrade my cherokee to the version 0.99.39., but when I execute the command cherokee-admin the console show me this errors and warnings:

[06/01/2010 00:25:54.753] (error) rrd_tools.c:114 - Could not find the rrdtool binary.
[06/01/2010 00:25:54.753] (warning) server.c:781 - Unable to raise file descriptor limit to 4096
Cherokee Web Server 0.99.39 (Dec 29 2009): Listening on port 127.0.0.1:9090, TLS
disabled, IPv6 disabled, using epoll, 1024 fds system limit, max. 505
connections, caching I/O, single thread


I can get in the web administrator of cherokee to the part of Virtual Servers but the server default shows the stats offline.

How can i resolve these problems???




Adrián Sánchez López

_______________________________________________
Cherokee mailing list
Cherokee <at> lists.octality.com
http://lists.octality.com/listinfo/cherokee
David McKeegan | 6 Jan 2010 10:50
Picon

Re: How update Cherokee 0.99.19

Hi

Could someone please tell me the line to add to the /etc/apt/sources.list in Debian Lenny?

I understand that the latest version in that repository is 99.32 - which I am currently using. It is working
like a dream, but I'd like to upgrade to the next stable version when it is ready.

Thanks in advance,

Dave

PS Sorry Leonel - I accidentally sent my first email to you privately instead of to the list!

On 5 Jan 2010, at 00:32, Leonel Nunez wrote:

>> **
>> *Hello*
>> **
>> *I've installed cherokee 0.99.19 from the repositorios of ubuntu. But i
>> don't understand how to update the most recent version, could you please
>> explain to me step by step?*
>> **
>> *Im using Ubuntu 9.10 Karmic Koala*
>> 
>> 
>> Adrián Sánchez López
>> 
>> _______________________________________________
>> Cherokee mailing list
>> Cherokee <at> lists.octality.com
>> http://lists.octality.com/listinfo/cherokee
>> 
>> 
> 
> Add this line to your /etc/apt/sources.list:
> 
> deb http://ppa.launchpad.net/cherokee-webserver/ubuntu karmic main
> 
> then update your package sources with :
> 
> sudo apt-get update
> 
> then upgrade your packages:
> 
> sudo apt-get upgrade
> 
> This will get you the latest and greatest cherokee
> 
> Saludos
> 
> Leonel
> 
> 
> _______________________________________________
> Cherokee mailing list
> Cherokee <at> lists.octality.com
> http://lists.octality.com/listinfo/cherokee
Oli Warner | 6 Jan 2010 13:26
Gravatar

Re: How update Cherokee 0.99.19

You can read all about it in the help but it's really simple:

sudo add-apt-repository ppa:cherokee-webserver

That will add the PPA keys. You just need to sudo apt-get update afterwards.

More: https://help.ubuntu.com/community/Repositories/CommandLine
_______________________________________________
Cherokee mailing list
Cherokee <at> lists.octality.com
http://lists.octality.com/listinfo/cherokee
Yo'av Moshe | 6 Jan 2010 14:07
Picon
Gravatar

utf-8 bug using list & send?

Hey list!

Running Cherokee 0.99.38 on Debian, compiled from source.

Using a Wordpress system, one of my users uploaded a file with a Hebrew file name.
The file can easily be seen by listing the directory, though when clicking the link Cherokee throws a 404 error. 

Check this:

Cleared the filename, left only the first character (ת), and the same file is working.

Is this a bug?

-- 
Yo'av Moshe
_______________________________________________
Cherokee mailing list
Cherokee <at> lists.octality.com
http://lists.octality.com/listinfo/cherokee

Gmane