NAME
pintod - the pinto web server
VERSION
version 0.048
SYNOPSIS
pintod --root=/path/to/repository [--daemon] [--port=N]
DESCRIPTION
Before running pintod
you must first create a Pinto repository. See pinto for instructions on that.
pintod
provides a web API to a Pinto repository. Clients (like pinto) can use this API to manage and inspect the repository. In addition, pintod
serves up the distributions within repository, so you can use it as the backend for cpan or cpanm.
ARGUMENTS
OPTIONS
- --auth
-
Indicates the an option describing the authentication scheme to use (default is no authentication). Each time this is used, a key=value pair must follow; one of them must be 'backend', which should correspond to a class in the Authen::Simple namespace, e.g. backend=Kerberos would indicate that Kerberos authentication will be used, with the Authen::Simple::Kerberos backend.
Options that follow will be passed as-is to the authentication backend.
For example, this would be a valid configuration for Kerberos:
--auth backend=Kerberos --auth realm=REALM.COMPANY.COM
and this is how the authentication backend will be constructed:
my $auth = Authen::Simple::Kerberos->new( realm => 'REALM.COMPANY.COM' );
- other options
-
All other options supported by plackup are supported too, such as
--server
,--port
,--daemonize
, etc. These will be passed to Plack::Runner.
DEPLOYMENT
pintod
is PSGI compatible, running under Plack::Runner by default. It will use whatever backend you specify on the command line or have configured in your environment.
If you wish to add your own middleware and/or customize the backend in other ways, you can use Pinto::Server in a custom .psgi script like this:
# my-pintod.psgi
my %opts = (...);
my $server = Pinto::Server->new(%opts);
my $app = $server->to_app();
# wrap $app with middlewares here and/or
# insert code customized for your backend
# which operates on the $app
Then you may directly launch my-pintod.psgi using plackup.
AUTHOR
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Imaginative Software Systems.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.