> I did'nt know uwsgi til your post (I've heard of it, but never tested it)
> uwsgi is not a http server ... but since 0.9.6 it embeds one ....
> your entry point in your module should be named "application".
> so you can set as it :
> application = bottle.app()
> and just run something like that :
> uwsgi --http 127.0.0.1:8080 -w myapp -p 4 -M -t 20 --limit-as 128 -m -T
> (myapp is your module named myapp.py in the current dir/path)
> but you should use uwsgi with a real server (nginx, cherokee, apache,
> lighttpd, ...).
> On Wed, Nov 24, 2010 at 12:21, Gianluca <g...@brindi.si> wrote:
> > Hello,
> > I am trying Bottle.py for the first time and I've reached the
> > deployment phase.
> > I would like Bottle to play nice with uWSGI but I still have not
> > figured out how to configure everything properly.
> > Can you point me to the right direction?
> > Thank you!
> > G
> > --
> > You are member of the "bottlepy" group at google groups.
> > Seehttp://groups.google.de/group/bottlepyfor mailing list options.
> > Seehttp://bottle.paws.de/for news and documentation.