]> ruin.nu Git - ndwebbie.git/blobdiff - lib/NDWeb.pm
Top members converted
[ndwebbie.git] / lib / NDWeb.pm
index 8cc8388798f1d2dec3b48f1d2fd483be1b41c890..238e5f409e057a63575d2fb37a6b16521751fff8 100644 (file)
@@ -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,9 +61,17 @@ __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/]);
 
 =head1 NAME