Starman is a high-performance preforking Perl PSGI web server Project site: https://github.com/miyagawa/Starman CPAN: http://search.cpan.org/dist/Starman/
9
votes
2answers
2k views
Why use nginx with Catalyst/Plack/Starman?
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 ...
2
votes
1answer
77 views
Configuring directory aliases in Starman (or other PSGI servers)
I am used to setting aliases to different directories in Apache httpd.conf. For example, the following works for me
Alias /lib /path/to/lib
Then I can include paths such as <script ...
2
votes
1answer
352 views
Where can I find application runtime errors using Nginx, Starman, Plack and Catalyst?
I have managed successfully to server my Catalyst app on my development machine using Plack + Starman, using a daemon script I based on one I found in Dave Rolsky's Silki distribution.
I then set up ...
2
votes
1answer
564 views
uri_for includes port number on redirects
I'm attempting to implement a Catalyst application using nginx as a frontend web proxy for static files, and using Starman for my backend webserver. (I could use Apache & FastCGI and it works ...
0
votes
0answers
7 views
Calling 'confess' under Plack/Starman
I have a Plack/Starman application running with TryCatch statements that call 'confess' from the Carp module. However I notice that the confess output is not printing to STDOUT. I've tried routing ...
0
votes
1answer
44 views
Dynamic package loading under plackup with Starman
I am running a web app under plackup with starman and trying to dynamically load and instantiate packages based on user requests. I am using 'require $packageName;' to load the package where ...