I am trying to deploy my little Catalyst web app using Plack/Starman. All the documentation seems to suggest I want to use this in combination with nginx. What are the benefits of this? Why not use Starman straight up on port 80?
相关问题
- $ENV{$variable} in perl
- Is it possible to pass command-line arguments to @
- How can I prevent my Shiny App from disconnecting
- Can't configure nginx as a proxy for tomcat wi
- Redirecting STDOUT and STDERR to a file, except fo
I asked this question on #plack and got the following response from @nothingmuch (I added formatting):
It doesn't have to be nginx in particular, but you want some kind of frontend server proxying to your application server for a few reasons:
So that you can run the Catalyst server on a high port, as an ordinary user, while running the frontend server on port 80.
To serve static files (ordinary resources like images, JS, and CSS, as well as any sort of downloads you might want to use X-Sendfile or X-Accel-Redirect with) without tying up a perl process for the duration of the download.
It makes things easier if you want to move on to a more complicated config involving e.g. Edge Side Includes, or having the webserver serve directly from memcached or mogilefs (both things that nginx can do), or a load-balancing / HA config.
Another reason is that a lightweight frontend server (even Apache is OK) consumes much less memory per connection than a typical Starman process (a couple of MB vs. tens or more than 100 MB). Since a connection is open for some time, especially if you want to use keep-alive connections, you can support a large number of simultaneous connections with much less RAM. Only make sure that the buffer size of the proxying frontend server is large enough to load a typical HTTP response immediately from the backend. Then the backend is free to process the next request.