]> git.sesse.net Git - pr0n/blobdiff - perl/Sesse/pr0n/Config.pm
Moved the password configuration out into its own file.
[pr0n] / perl / Sesse / pr0n / Config.pm
diff --git a/perl/Sesse/pr0n/Config.pm b/perl/Sesse/pr0n/Config.pm
new file mode 100644 (file)
index 0000000..e267c99
--- /dev/null
@@ -0,0 +1,17 @@
+# 
+# Copy this file to Config-local.pm and change the values there to
+# suit your own needs.
+#
+# Note that most configuration is done in your vhost; this isn't,
+# because it's persistent between sessions and we don't have access
+# to the Apache configuration data then.
+#
+package Sesse::pr0n::Config;
+use strict;
+use warnings;
+
+our $db_host = '127.0.0.1';
+our $db_username = 'pr0n';
+our $db_password = '';
+
+1;