From cb97bc45098a726b5b4c26b8660c3f4bbac1a790 Mon Sep 17 00:00:00 2001 From: alech Date: Fri, 5 Dec 2008 13:41:00 +0000 Subject: [PATCH] Morphix: RT configuration for live CD git-svn-id: https://openxpki.svn.sourceforge.net/svnroot/openxpki@1378 95d9436f-6502-0410-902c-bd9569d1a17e --- trunk/package/morphix/RT_SiteConfig.pm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 trunk/package/morphix/RT_SiteConfig.pm diff --git a/trunk/package/morphix/RT_SiteConfig.pm b/trunk/package/morphix/RT_SiteConfig.pm new file mode 100644 index 00000000..48b4701d --- /dev/null +++ b/trunk/package/morphix/RT_SiteConfig.pm @@ -0,0 +1,34 @@ +# RT_SiteConfig.pm +# +# These are the bits you absolutely *must* edit. +# +# To find out how, please read +# /usr/share/doc/request-tracker3.6/NOTES.Debian + +# THE BASICS: + +Set($rtname, 'rt.openxpki.example.com'); +Set($Organization, 'example.com'); + +Set($CorrespondAddress , 'rt@my.domain.com'); +Set($CommentAddress , 'rt-comment@my.domain.com'); + +Set($Timezone , 'Europe/London'); # obviously choose what suits you + +# THE DATABASE: + +Set($DatabaseType, 'mysql'); # e.g. Pg or mysql + +# These are the settings we used above when creating the RT database, +# you MUST set these to what you chose in the section above. + +Set($DatabaseUser , 'rtuser'); +Set($DatabasePassword , 'wibble'); +Set($DatabaseName , 'rtdb'); + +# THE WEBSERVER: + +Set($WebPath , "/rt"); +Set($WebBaseURL , "http://openxpkilive"); + +1; -- 2.11.4.GIT