X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=lib%2FNDWeb.pm;h=df1da1748d850eaa9d37f0250fe5b2c8afdb9fff;hb=11149303e8c0c031f5e08c5792930b490ba4a30b;hp=2dbab22e755946756581e26838f19abec9883b4f;hpb=3fc40135d773a95ede229e71efb48e07fdf3c418;p=ndwebbie.git diff --git a/lib/NDWeb.pm b/lib/NDWeb.pm index 2dbab22..df1da17 100644 --- a/lib/NDWeb.pm +++ b/lib/NDWeb.pm @@ -27,10 +27,56 @@ our $VERSION = '0.01'; # local deployment. __PACKAGE__->config( name => 'NDWeb' ); +__PACKAGE__->config->{'Plugin::Authentication'}{'use_session'} = 1; +__PACKAGE__->config(session => { + storage => "/tmp/ndweb-$>/sesession", + directory_umask => 077, +}); +__PACKAGE__->config( cache => { + backend => { + class => "Cache::FileCache", + cache_root => "/tmp/ndweb-$>", + directory_umask => 077, + }, +}); + +__PACKAGE__->config( page_cache => { + set_http_headers => 1, +}); -# Start the application -__PACKAGE__->setup(qw/-Debug ConfigLoader Static::Simple/); +# Start the application +__PACKAGE__->setup(qw/ + -Debug + ConfigLoader + Static::Simple + + Authentication + Authentication::Store::NDWeb + Authentication::Credential::Password + + Authorization::Roles + Authorization::ACL + + Session + Session::Store::File + Session::State::Cookie + + Cache + PageCache + /); + + +__PACKAGE__->deny_access_unless('/users',[qw/admin_users/]); +__PACKAGE__->deny_access_unless('/alliances/resources',[qw/alliances_resources/]); +__PACKAGE__->deny_access_unless('/graphs/alliancevsintel',[qw/graphs_intel/]); +__PACKAGE__->deny_access_unless('/graphs/avgalliancevsintel',[qw/graphs_intel/]); +__PACKAGE__->deny_access_unless('/members',[qw/members/]); +__PACKAGE__->deny_access_unless('/covop',[qw/covop/]); +__PACKAGE__->deny_access_unless('/calls/list',[qw/calls_list/]); +__PACKAGE__->deny_access_unless('/calls/postcallcomment',[qw/calls_edit/]); +__PACKAGE__->deny_access_unless('/calls/postcallupdate',[qw/calls_edit/]); +__PACKAGE__->deny_access_unless('/calls/postattackerupdate',[qw/calls_edit/]); =head1 NAME