Questions tagged [cherokee]

Cherokee is a fast, flexible and easy to configure Web Server.

66 questions
0
votes
3 answers

Apache, lighttpd, nginx, cherokee, what's the best combination?

I have a blog, dynamic (php) and static content (images, css, js). I googled a lot to find benchmarks on each server and figured out that there's actually no best server. Therefore I'm looking for returns on experience to choose the good…
seriousdev
  • 7,519
  • 8
  • 45
  • 52
0
votes
2 answers

RegEx construction to exclude files

I'm really stuck with creating an RegEx that excludes files from being rewritten. I am using Cherokee as web server and want to turn links like http: //example.com/123 to http: //example.com/get.php?short=123. My problem is that I want to create a…
Paul
  • 1,295
  • 2
  • 11
  • 26
0
votes
1 answer

Can Cherokee serve a fallback/default page when a reverse proxy is unavailable?

I have a Cherokee installation that I'm using to serve a few web applications - one blog/calendar/etc. and two CPU-intensive web applications (1 stable version and 1 development version). All of them are Django or Pylons webservices served with…
JudoWill
  • 4,741
  • 2
  • 36
  • 48
0
votes
1 answer

Django uwsgi subprocess and permissions

I'm trying to generate PDF file from Latex template. I've done it in development environment (running python manage.py straight from eclipse)... but I can't make it work into the server, which is running using cherokee and uwsgi. We have realized…
0
votes
1 answer

What could cause a redirect loop with Pylons + uWSGI + Cherokee?

I had no issue with Django + uWSGI + Cherokee. BUt I would like to try pylons before committing to either framework. I followed the tutorial from pylonshq.com - 1.0/gettingstarted I ran into no problems when running pylons with paste. So I used…
0
votes
1 answer

Cherokee + uWSGI + Pylons

I have successfully deployed a Django app with uWSGI + Cherokee. However, I want to experiment with Pylons before I go decide on Django. So far I have followed the instructions/recommendations here: Deploying Pylons with uWSGI Paster serve works…
0
votes
2 answers

cherokee doesn't synchronic update django process code

I use cherokee(1.0) as web server and django web framework(1.2.1). When I update django files like views.py or static files, web server seems not to update instantly. I guess it is about cache, so i set expiration "already expired on 1970", but the…
elprup
  • 1,960
  • 2
  • 18
  • 32
0
votes
1 answer

wsgi-served page does not refresh

I recently got my first app to work in uWSGI with Cherokee. I used the following code taken from the uWSGI docs: def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/plain')]) yield 'Hello World\n' The page…
Steve Tjoa
  • 59,122
  • 18
  • 90
  • 101
0
votes
1 answer

codeigniter 3.0rc2 Sqlite3 not returning any data

I'm using codeigniter 3rc2 and Sqlite3 on an embedded device running ubuntu. Server and php are configured correctly. When I try to retrieve data from the database It returns an empty query object. Things I tried and excluded as a problem : access…
0
votes
1 answer

Cherokee Build on OBS

I am trying to create a rpm package of Cherokee from source via the Open Build Service for OpenSuse. I have uploaded the SUNWCHerokee.spec but the build failed and I cannot figure out why. Here is the log file. I hope somebody can help me. [ 0s]…
Sebastian Grebe
  • 657
  • 1
  • 8
  • 23
0
votes
1 answer

Cherokee: accessing uwsgi configuration file

I'm running into a permissions problem with Cherokee+uWSGI on Ubuntu Server 13.10 intended for a Django production environment. When I start uWSGI manually as root user prior to launching cherokee, everything goes smooth: sudo uwsgi --ini…
tomekwi
  • 2,048
  • 2
  • 21
  • 27
0
votes
0 answers

Cherokee gives 500 error

django_wsgi.py import os os.environ['DJANGO_SETTINGS_MODULE'] = 'umka.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() uwsgi.xml python
oleg.foreigner
  • 993
  • 2
  • 13
  • 28
0
votes
2 answers

Cherokee URL Rewrite

I wasn't able to find any documentation on Cherokee rewrite for .php endings. Essentially I want to remove the .php on all my pages. For example: /volunteer loads /volunteer.php but doesn't show the .php. Is this possible? thanks.
Patrick
  • 159
  • 1
  • 2
  • 11
0
votes
1 answer

Cherokee+uWSGI+web2py

how i can configure cherokee 1.2 server with uWSGI and web2py? after some googling I read some tutor about configure, but the cherokee version in that tutors are too old. is there any new tutorial or can somebody ste-by-step explain how to deploy…
Jack Daniel
  • 2,397
  • 8
  • 33
  • 58
0
votes
1 answer

Caching dynamic REST content in Cherokee

I'm developing a backend server for a mobile app using Cherokee + PHP-FPM + MySQL. I'm providing a RESTful API using Luracast Restler 2. How do you cache dynamic content so that, for example, once a client has requested a list of items through the…
Fabio Cionini
  • 767
  • 6
  • 15