X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=lib%2FNDWeb.pm;h=b47a9fa278ceea70e3b12aacb1b38cd37aefc53f;hb=80ad5ca3ad49aa9cc029fe3baaff513e422ef499;hp=00c8f008af6b3418a3c62f6386b44ccd0ed8905a;hpb=ffd7bf407e56bf271981151b6845f26ff1b366bc;p=ndwebbie.git diff --git a/lib/NDWeb.pm b/lib/NDWeb.pm index 00c8f00..b47a9fa 100644 --- a/lib/NDWeb.pm +++ b/lib/NDWeb.pm @@ -5,10 +5,6 @@ use warnings; use Catalyst::Runtime '5.70'; -#Need to preload, otherwise the first hit is slow -use CGI qw/:standard/; -escapeHTML(''); - # Set flags and add plugins for the application # # -Debug: activates the debug mode for very useful log messages @@ -32,7 +28,21 @@ our $VERSION = '0.01'; __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 @@ -51,8 +61,19 @@ __PACKAGE__->setup(qw/ 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/]); + =head1 NAME NDWeb - Catalyst based application