greyhound.php
changeset 21 74edc873234f
parent 19 75dd71fe35b2
child 25 5c377ceb0e4c
equal deleted inserted replaced
20:bb8237ca678d 21:74edc873234f
    38 // The default theme. This should be a name of a directory in ./themes.
    38 // The default theme. This should be a name of a directory in ./themes.
    39 $theme = 'funkymonkey';
    39 $theme = 'funkymonkey';
    40 // Allow forking when an HTTP request is received. This has advantages
    40 // Allow forking when an HTTP request is received. This has advantages
    41 // and disadvantages. If this experimental option is enabled, it will
    41 // and disadvantages. If this experimental option is enabled, it will
    42 // result in faster responses and load times but more memory usage.
    42 // result in faster responses and load times but more memory usage.
    43 $allow_fork = true;
    43 $allow_fork = false;
       
    44 // set to true to enable authentication
       
    45 // WARNING: THIS HAS SOME SERIOUS SECURITY PROBLEMS RIGHT NOW. I don't
       
    46 // know what's causing it to not prompt for authentication from any
       
    47 // client after the first successful auth.
       
    48 $use_auth = false;
       
    49 // valid users and passwords
       
    50 $auth_data = array(
       
    51     'funky' => 'monkey',
       
    52     'fast' => 'forward'
       
    53   );
    44 
    54 
    45 @ini_set('display_errors', 'on');
    55 @ini_set('display_errors', 'on');
    46 
    56 
    47 // include files
    57 // include files
    48 require('functions.php');
    58 require('functions.php');