[Lift] Re: Deploying Lift app

2010-02-10 Thread Mads Hartmann
It's Debian, but I think I have enough information to go on now ;) Thanks everyone, Mads Hartmann On Feb 10, 9:16 pm, Naftoli Gugenheim naftoli...@gmail.com wrote: What OS is on the server? - Jeppe Nejsum Madsenje...@ingolfs.dk wrote: Mads Hartmann

[Lift] Re: Deploying

2009-08-18 Thread Indrajit Raychaudhuri
Peter, Just adding the following section in nginx conf would be a good start. server { location / { proxy_pass http://localhost:8080/; } } There is whole page on Nginx wiki on this: http://wiki.nginx.org/NginxJavaServers. Cheers, Indrajit On Aug 18, 6:14 am, Peter Robinett

[Lift] Re: Deploying

2009-08-18 Thread David Pollak
On Mon, Aug 17, 2009 at 10:59 AM, Naftoli Gugenheim naftoli...@gmail.comwrote: Thanks everyone.This webapp is not going to be used very heavily or have a very demanding customer base. It's for an organization that will have around 5 people using it total, not necessarily at the same time. So I

[Lift] Re: Deploying

2009-08-17 Thread Jeppe Nejsum Madsen
Naftoli Gugenheim naftoli...@gmail.com writes: What's the best way to get a lift app running on a Ubuntu web server I can SSH into with full permissions? It came with almost nothing installed. Thanks. It may be overkill for you if it's just a one time install, but I've had great success

[Lift] Re: Deploying

2009-08-17 Thread Peter Robinett
I know David likes running Nginx in front of Jetty On Aug 17, 12:00 am, Jeppe Nejsum Madsen je...@ingolfs.dk wrote: Naftoli Gugenheim naftoli...@gmail.com writes: What's the best way to get a lift app running on a Ubuntu web server I can SSH into with full permissions? It came with

[Lift] Re: Deploying

2009-08-17 Thread Timothy Perrett
I run several sizable applications with NGINX and Jetty... Works like a dream. On 17/08/2009 18:55, Peter Robinett pe...@bubblefoundry.com wrote: I know David likes running Nginx in front of Jetty --~--~-~--~~~---~--~~ You received this message because

[Lift] Re: Deploying

2009-08-17 Thread Peter Robinett
Timothy, I'm just starting to learn how to use Nginx and would love to some pointers. How did you set up Nginx? How to do you launch your Jetty instances? Peter On Aug 17, 3:34 pm, Timothy Perrett timo...@getintheloop.eu wrote: I run several sizable applications with NGINX and Jetty... Works

[Lift] Re: Deploying

2009-08-16 Thread Morris Jones
Naftoli Gugenheim wrote: What's the best way to get a lift app running on a Ubuntu web server I can SSH into with full permissions? It came with almost nothing installed. Thanks. I'll take a shot at this, since the answer primarily involves Java and an application server. It's not too

[Lift] Re: Deploying with Jetty (and Apache too?)

2009-05-27 Thread David Pollak
Jetty's fine for serving static content. It's not going to be materially slower than Apache. I would remove Apache from the mix all together. It adds nothing other than nice logging. I use Nginx because it's lighter weight and does a lot better with a lot of open HTTP requests (think Comet).

[Lift] Re: Deploying with Jetty (and Apache too?)

2009-05-27 Thread Joe Wass
Thanks, that's what I thought. But you can get some nasty surprises if you make assumptions. I've heard a lot about nginx (none of it bad). I might give it a go if I find I have more complex needs... Joe On May 27, 8:26 pm, David Pollak feeder.of.the.be...@gmail.com wrote: Jetty's fine for

[Lift] Re: Deploying with Jetty (and Apache too?)

2009-05-27 Thread Timothy Perrett
Couldn't recommend trying nginx enough... i've been using it in production for 4 years and just cant fault it... Cheers, Tim On May 27, 9:23 pm, Joe Wass j...@folktunefinder.com wrote: Thanks, that's what I thought. But you can get some nasty surprises if you make assumptions. I've heard a