From 8c05b81d6860d8e0da4098cc6f59f630d7c53037 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Tue, 25 Mar 2008 16:29:54 +0000 Subject: * Committing Lulurun's Cgi/Perl implementation of the UGAI servers. * I love you long time. --- share/perl/lib/OpenSim/Config.pm | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 share/perl/lib/OpenSim/Config.pm (limited to 'share/perl/lib/OpenSim/Config.pm') diff --git a/share/perl/lib/OpenSim/Config.pm b/share/perl/lib/OpenSim/Config.pm new file mode 100644 index 0000000..246ef26 --- /dev/null +++ b/share/perl/lib/OpenSim/Config.pm @@ -0,0 +1,41 @@ +package OpenSim::Config; + +# REGION keys +our $SIM_RECV_KEY = ""; +our $SIM_SEND_KEY = ""; +# ASSET server url +#our $ASSET_SERVER_URL = "http://127.0.0.1:8003/"; +our $ASSET_SERVER_URL = "http://opensim.wolfdrawer.net:80/asset.cgi"; +our $ASSET_RECV_KEY = ""; +our $ASSET_SEND_KEY = ""; +# USER server url +#our $USER_SERVER_URL = "http://127.0.0.1:8001/"; +our $USER_SERVER_URL = "http://opensim.wolfdrawer.net:80/user.cgi"; +our $USER_RECV_KEY = ""; +our $USER_SEND_KEY = ""; +# GRID server url +#our $GRID_SERVER_URL = "http://127.0.0.1:8001/"; +our $GRID_SERVER_URL = "http://opensim.wolfdrawer.net:80/grid.cgi"; +our $GRID_RECV_KEY = ""; +our $GRID_SEND_KEY = ""; +# INVENTORY server url +#our $INVENTORY_SERVER_URL = "http://127.0.0.1:8004"; +our $INVENTORY_SERVER_URL = "http://opensim.wolfdrawer.net:80/inventory.cgi"; +# DB +our $DSN = "dbi:mysql:database=opensim;host=192.168.0.20"; +our $DBUSER = "lulu"; +our $DBPASS = "1234"; + +# DEBUG LOG +our $DEBUG_LOGDIR = "/home/lulu/temp/opensim"; + +# MSG +our %SYS_MSG = ( + FATAL => "You must have been eaten by a wolf.", + FAIL => "Late! There is a wolf behind you", + LOGIN_WELCOME => "Do you fear the wolf ?", +); + + +1; + -- cgit v1.1