Web site: http://plackperl.org/
14
votes
2answers
418 views
How to make Mason 2 UTF-8 clean?
There is a nice guide in Four easy steps to make Mason UTF-8 Unicode clean with Apache, mod_perl, and DBI - how to make the old HTML::Mason UTF-8 transparent. Now, Mason 2 has arrived. How do I make ...
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 ...
8
votes
1answer
126 views
Plack & taint mode
Is it recommended developing Plack applications (middlewares) with perl's taint mode?
If yes, how to start plackup and/or Starman in tainted mode? In the simple CGI script that was easily done with ...
6
votes
2answers
325 views
Multilingual PSGI-web deployment
I plan develop one web application with PSGI/Plack. (probaly with
Dancer, but not decided yet).
The applicatiion should be utf8, multilingual (with Locale::Maketext) and (ofc) will contain some ...
6
votes
2answers
1k views
nginx and Perl: FastCGI vs reverse proxy (PSGI/Starman)
A very popular choice for running Perl web applications these days seems to be behind a nginx webserver proxying requests to either a FastCGI daemon or a PSGI enabled webserver (e.g. Starman).
There ...
5
votes
4answers
390 views
Modern perl - ready to run applications - learning by examples - from what?
I'm learning Modern perl - Moose, Plack etc. In much advices you can read "learn by examples" - so started searching for some ready-to-run applications written with Modern perl.
Browsed much pages ...
4
votes
2answers
297 views
How to setup Apache-like name based virtual server with PSGI Starman
In my previous question I'm asked about the multi-domain solution, but the question was too complex.
Now in short:
Is possible somewhat setup name based virtual servers with Starman (or with any ...
3
votes
2answers
277 views
Why is raising plackup (or starman) memory usage?
I have this simple PSGI application (app.psgi).
use strict;
use warnings;
my $app = sub {
my $mem = `ps -o rss= -p $$`;
$mem =~ s/^\s*|\s*$//gs;
return [ 200, [ 'Content-Type' => ...
3
votes
2answers
88 views
How to can one Plack application affect another one?
I have this:
use Plack::Builder;
my $config_app = sub {...};
my $app = sub {...}
builder {
mount "/admin" => $config_app;
mount "/" => $app;
};
the $config_app saving configuration ...
3
votes
3answers
334 views
PSGI Response: What kinds of filehandles can be expected to work with PSGI, and Plack?
The PSGI specification defines the HTTP response as consisting of three parts, the third of which may be either an array reference or a filehandle. The filehandle may be:
An IO::Handle-like object or ...
3
votes
2answers
272 views
How do I stack Plack authentication handlers?
I would like to have my Plack app try several different means of authorizing the user. Specifically, check if the user is already authorized via a session cookie, then check for Digest authentication ...
2
votes
1answer
23 views
How to turn a static CGI-style perl script(xxx.pl) to a dynamic PSGI application?
CGI-style perl scripts are hard to test in this style:
def test_it_says_hello_to_a_person
get '/home.pl', :name => 'Simon'
assert last_response.body.include?('Simon')
end
(Note: the code ...
2
votes
1answer
315 views
Best init script for running an application as a separate user
I have an application that runs in a user account (Plack-based) and want an init script.
It seems as easy as "sudo $user start_server ...". I just wrote an LSB script using start-stop-daemon and it ...
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 ...
1
vote
2answers
104 views
Perl-Starman (PSGI) + PHP = Apache2 proxy setup? - How to do?
How to run together: PSGI and PHP?
I have Perl/PSGI application (running under pure perl Starman server). Now, for some reason need run one PHP application too ;(, so (probably) need Apache2. ...
1
vote
1answer
57 views
How to add edit-layer as Plack-middleware?
I have an idea to add a edit-layer to website as a Plack middleware.
Explanation: let's say, we create a website, based on some framework and templates and CSS (requesting it like /some/page). Now ...
1
vote
1answer
95 views
plackup access log - locale and open pragma - encoding problem
My locale setting is utf8, so, when starting plackup the date strings are localized too. Therefore I getting console access-log like the following:
$ plackup a.psgi
HTTP::Server::PSGI: Accepting ...
1
vote
1answer
114 views
How can Plack applications log to multiple loggers?
Plack Middleware is very useful, for instance to configure logging targets independent of the application. But I have not found a method to use multiple loggers at the same time:
my $app = ...
1
vote
2answers
337 views
How do you deploy a PSGI script in Apache without restarting?
I want to deploy a PSGI scripts that runs in Apache2 with Plack. Apache is configured with:
<Location "/mypath">
SetHandler perl-script
PerlResponseHandler Plack::Handler::Apache2
...
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
149 views
PSGI application with Apache2 using Plack::Handler::Apache2 results in 'not found'
first time poster, long time lurker here.
Im using a tiny PSGI application in plackup, but id like to switch to Apache2 for subdomains. I run the application with 'plackup ...
0
votes
0answers
40 views
'body should be an array ref or filehandle' when using Plack::Middleware::Cache
I'm using Ingy's Plack::Middleware::Cache to cache page requests to my Plack app. Unfortunately, the first request to a cacheable URL dies with 'body should be an array ref or filehandle'.
The cache ...