IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 28, 2019, 12:00:30 PM (7 years ago)
Author:
eugene
Message:

startup.pl was out of date

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20191011/Nebulous-Server/docs/apache2-mod_perl-startup.pl

    r23687 r40976  
    2828use Nebulous::Server;
    2929
    30 my $dsn         = 'DBI:mysql:database=nebulous:host=ipp019.ifa.hawaii.edu';
     30my $dsn         = 'DBI:mysql:database=nebulous:host=nebulous.ipp.ifa.hawaii.edu';
    3131my $dbuser      = 'nebulous';
    32 my $dbpasswd    = '@neb@';
     32my $dbpasswd    = 'XXXX';
    3333
    3434#$Apache::DBI::DEBUG = 1;
    3535#Apache::DBI->connect_on_init( $dsn, $dbuser, $dbpasswd );
    3636Apache::DBI->setPingTimeOut($dsn, 10);
    37 Nebulous::Server::SOAP->new_on_init(
     37
     38my $config = Nebulous::Server::Config->new(
     39    trace       => 'warn',
     40                                           );
     41$config->add_db(
     42    dbindex     => 0,
    3843    dsn         => $dsn,
    3944    dbuser      => $dbuser,
    4045    dbpasswd    => $dbpasswd,
    41     log_level   => 'all',
    42 );
     46                );
     47
     48Nebulous::Server::SOAP->new_on_init($config);
     49
    4350
    44511;
Note: See TracChangeset for help on using the changeset viewer.