Changeset 4440 for trunk/Nebulous/t/conf
- Timestamp:
- Jun 29, 2005, 4:35:06 PM (21 years ago)
- Location:
- trunk/Nebulous/t/conf
- Files:
-
- 2 edited
-
extra.conf.in (modified) (2 diffs)
-
startup.pl.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous/t/conf/extra.conf.in
r4438 r4440 3 3 # this file will be Include-d by @ServerRoot@/httpd.conf 4 4 5 # where PS::IPP::IData::Server::Apache can be found5 # where Nebulous::Server::Apache can be found 6 6 # mp2 7 7 PerlSwitches -I@ServerRoot@/../lib … … 14 14 #ScriptSock logs/cgisock 15 15 16 <Location / idata>16 <Location /nebulous> 17 17 SetHandler perl-script 18 # PerlHandler PS::IPP::IData::Server::Apache18 # PerlHandler Nebulous::Server::Apache 19 19 PerlResponseHandler Apache2::SOAP 20 PerlSetVar dispatch_to "PerlHandler PS::IPP::IData::Server::SOAP"20 PerlSetVar dispatch_to "PerlHandler Nebulous::Server::SOAP" 21 21 PerlSetVar options "compress_threshold => 10000" 22 22 </Location> -
trunk/Nebulous/t/conf/startup.pl.in
r4438 r4440 3 3 use Apache::DBI; 4 4 use DBI; 5 use PS::IPP::IData::Server::SOAP;6 use PS::IPP::IData::Server;5 use Nebulous::Server::SOAP; 6 use Nebulous::Server; 7 7 8 8 my $dsn = "DBI:mysql:database=test:host=localhost"; … … 11 11 12 12 Apache::DBI->connect_on_init( $dsn, $dbuser, $dbpass ); 13 PS::IPP::IData::Server->setup( $dsn, $dbuser, $dbpass );13 Nebulous::Server->setup( $dsn, $dbuser, $dbpass ); 14 14 15 15 1;
Note:
See TracChangeset
for help on using the changeset viewer.
