596 lines
22 KiB
Plaintext
596 lines
22 KiB
Plaintext
|
#!/usr/bin/perl
|
||
|
# -*-perl-*-
|
||
|
|
||
|
# LiveJournal configuration file. Copy this out of the documentation
|
||
|
# directory to cgi-bin/ljconfig.pl and edit as necessary. The reason
|
||
|
# it's not in the cgi-bin directory already is to protect it from
|
||
|
# getting clobbered when you upgrade to the newest LiveJournal code in
|
||
|
# the future.
|
||
|
|
||
|
# This should be the only file you need to change to get the
|
||
|
# LiveJournal code to run on your site. If not, it's considered a bug
|
||
|
# and you should report it.
|
||
|
|
||
|
{
|
||
|
package LJ;
|
||
|
|
||
|
###
|
||
|
### Site Information
|
||
|
###
|
||
|
|
||
|
$HOME = $ENV{'LJHOME'};
|
||
|
$HTDOCS = "$HOME/htdocs";
|
||
|
$BIN = "$HOME/bin";
|
||
|
$TEMP = "$HOME/temp";
|
||
|
$VAR = "$HOME/var";
|
||
|
|
||
|
# human readable name of this site as well as shortened versions
|
||
|
# CHANGE THIS
|
||
|
$SITENAME = "Some LiveJournal Site";
|
||
|
$SITENAMESHORT = "YourSite";
|
||
|
$SITENAMEABBREV = "YS";
|
||
|
|
||
|
# the base domain of your site.
|
||
|
# CHANGE THIS
|
||
|
$DOMAIN = "ljsite.com";
|
||
|
|
||
|
# this is what gets prepended to all URLs
|
||
|
$SITEROOT = "http://www.$DOMAIN";
|
||
|
|
||
|
# prefix for images
|
||
|
$IMGPREFIX = "$SITEROOT/img";
|
||
|
|
||
|
# set this if you're running an FTP server that mirrors your htdocs/files
|
||
|
#$FTPPREFIX = "ftp://ftp.$DOMAIN";
|
||
|
|
||
|
# where we set the cookies (note the period before the domain)
|
||
|
# can be one value or an array ref (to accomodate certain old
|
||
|
# broken browsers)
|
||
|
$COOKIE_DOMAIN = ["", ".$DOMAIN"];
|
||
|
$COOKIE_PATH = "/";
|
||
|
|
||
|
# email addresses
|
||
|
$ADMIN_EMAIL = "webmaster\@$DOMAIN";
|
||
|
$SUPPORT_EMAIL = "support\@$DOMAIN";
|
||
|
$COMMUNITY_EMAIL = "community_invitation\@$DOMAIN";
|
||
|
$BOGUS_EMAIL = "lj_dontreply\@$DOMAIN";
|
||
|
|
||
|
# news site support. if set, that journal loads on the main page.
|
||
|
#$FRONTPAGE_JOURNAL = "news";
|
||
|
|
||
|
# if you define these, little help bubbles appear next to common
|
||
|
# widgets to the URL you define:
|
||
|
%HELPURL = (
|
||
|
#"accounttype" => "",
|
||
|
#"renaming" => "$SITEROOT/support/faqbrowse.bml?faqid=25",
|
||
|
#"security" => "$SITEROOT/support/faqbrowse.bml?faqid=24",
|
||
|
#"noautoformat" => "$SITEROOT/support/faqbrowse.bml?faqid=26",
|
||
|
#"userpics" => "$SITEROOT/support/faqbrowse.bml?faqid=46",
|
||
|
#"iplogging" => "$SITEROOT/support/faqbrowse.bml?faqid=66",
|
||
|
#"s2propoff" => '$SITEROOT/support/faqbrowse.bml?faqid=145',
|
||
|
#"userpic_inactive" => "$SITEROOT/support/faqbrowse.bml?faqid=46",
|
||
|
#"textmessaging_about" => "$SITEROOT/support/faqbrowse.bml?faqid=30",
|
||
|
#"linklist_support" => "$SITEROOT/manage/links.bml",
|
||
|
);
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
### Policy Options
|
||
|
###
|
||
|
|
||
|
# collect birthdays to mark users as underage (under 13). note that you will
|
||
|
# need to create a new cap class for underage users...
|
||
|
$COPPA_CHECK = 0;
|
||
|
#$UNDERAGE_BIT = ?;
|
||
|
# and then set $UNDERAGE_BIT to be the bit number for the capability class to
|
||
|
# put underage users in. off by default.
|
||
|
|
||
|
$TOS_CHECK = 1; # require users to agree to TOS
|
||
|
#$UNIQ_COOKIES = 1; # give users uniq cookies to help fight abuse
|
||
|
|
||
|
%REQUIRED_TOS =
|
||
|
(
|
||
|
# revision must be found in first line of your htdocs/inc/legal-tos include file:
|
||
|
# <!-- $Revision: 1.60 $ -->
|
||
|
|
||
|
# set required version to enable tos version requirement mechanism
|
||
|
#rev => '1.0',
|
||
|
|
||
|
# these are the defaults and are used if no "domain"-specific
|
||
|
# values are defined below
|
||
|
title => 'Configurable Title for TOS requirement',
|
||
|
html => 'Configurable HTML for TOS requirement',
|
||
|
text => 'Configurable text error message for TOS requirement',
|
||
|
|
||
|
# text/html to use when message displayed for a login action
|
||
|
login => {
|
||
|
html => "Before logging in, you must update your TOS agreement",
|
||
|
},
|
||
|
|
||
|
# ... an update action
|
||
|
update => {
|
||
|
html => "HTML to use in update.bml",
|
||
|
},
|
||
|
|
||
|
# ... posting a comment (this will just use the defaults above)
|
||
|
comment => {
|
||
|
},
|
||
|
|
||
|
# ... protocol actions
|
||
|
protocol => {
|
||
|
text => "Please visit $LJ::SITEROOT/legal/tos.bml to update your TOS agreement",
|
||
|
},
|
||
|
|
||
|
# ... support requests
|
||
|
support => {
|
||
|
html => "Text to use when viewing a support request",
|
||
|
},
|
||
|
|
||
|
);
|
||
|
|
||
|
# filter comments for spam using this list of regular expressions:
|
||
|
#@TALKSPAM = (
|
||
|
# "morphese",
|
||
|
# );
|
||
|
|
||
|
# require new free acounts to be referred by an existing user?
|
||
|
# NOTE: mostly ljcom-specific. some features unimplemented in
|
||
|
# the livejournal-only tree.
|
||
|
#$USE_ACCT_CODES = 1;
|
||
|
|
||
|
#$EVERYONE_PAID = 1; # are all users paid by default?
|
||
|
#$EVERYONE_VALID = 1; # are all users validated by default?
|
||
|
|
||
|
|
||
|
###
|
||
|
### System Information
|
||
|
###
|
||
|
|
||
|
# on a larger installation, it's useful to have multiple qbufferd.pl
|
||
|
# processes, one for each command type. this is unecessary on a
|
||
|
# small installation. you can also specify a delay between runs.
|
||
|
#@QBUFFERD_ISOLATE = ('weblogscom', 'ljcom_newpost');
|
||
|
#$QBUFFERD_DELAY = 10;
|
||
|
|
||
|
# MemCache information, if you have MemCache servers running
|
||
|
#@MEMCACHE_SERVERS = ('hostname:port');
|
||
|
#$MEMCACHE_COMPRESS_THRESHOLD = 1_000; # bytes
|
||
|
|
||
|
# path to sendmail and any necessary options
|
||
|
$SENDMAIL = "/usr/sbin/sendmail -t";
|
||
|
|
||
|
# optional SMTP server if it is to be used instead of sendmail
|
||
|
#$SMTP_SERVER = "127.0.0.1";
|
||
|
|
||
|
# command-line to spell checker, or undefined if you don't want spell checking
|
||
|
#$SPELLER = "/usr/local/bin/ispell -a";
|
||
|
#$SPELLER = "/usr/local/bin/aspell pipe --sug-mode=fast --ignore-case";
|
||
|
|
||
|
# to save bandwidth, should we compress pages before they go out?
|
||
|
# require Compress::Zlib to be installed
|
||
|
#$DO_GZIP = 1;
|
||
|
|
||
|
# Support signed PGP email for email posting?
|
||
|
# Requires GnuPG::Interface and Mail::GnuPG to be installed.
|
||
|
#$USE_PGP = 1;
|
||
|
|
||
|
# HINTS:
|
||
|
# how far you can scroll back on lastn and friends pages.
|
||
|
# big performance implications if you make these too high.
|
||
|
# also, once you lower them, increasing them won't change anything
|
||
|
# until there are new posts numbering the difference you increased
|
||
|
# it by.
|
||
|
$MAX_HINTS_LASTN = 100;
|
||
|
$MAX_SCROLLBACK_LASTN = 400;
|
||
|
|
||
|
# do paid users get email addresses? username@$USER_DOMAIN ?
|
||
|
# (requires additional mail system configuration)
|
||
|
#$USER_EMAIL = 1;
|
||
|
|
||
|
# Support URLs of the form http://username.yoursite.com/ ?
|
||
|
# If so, what's the part after "username." ?
|
||
|
#$USER_VHOSTS = 1;
|
||
|
#$USER_DOMAIN = $DOMAIN;
|
||
|
|
||
|
# If you ONLY want USER_VHOSTS to work and not the typical /users/USER and /community/USER
|
||
|
# then set this option:
|
||
|
#$ONLY_USER_VHOSTS = 1;
|
||
|
|
||
|
# Support updating of journals via email?
|
||
|
# Users can post to user@$EMAIL_POST_DOMAIN.
|
||
|
#$EMAIL_POST_DOMAIN = "post.$DOMAIN";
|
||
|
|
||
|
# This should be a path to a Maildir, matching the delivery
|
||
|
# location of your MTA.
|
||
|
# If you are using sendmail, you should deliver with procmail
|
||
|
# (versions 3.14 and above) for Maildir support.
|
||
|
#$MAILSPOOL = '/home/livejournal/mail';
|
||
|
|
||
|
# Allow users to point their own domains here?
|
||
|
#OTHER_VHOSTS = 1;
|
||
|
|
||
|
# turns these from 0 to 1 to disable parts of the site that are
|
||
|
# CPU & database intensive or that you simply don't want to use
|
||
|
%DISABLED = (
|
||
|
'interests-findsim' => 0,
|
||
|
'directory' => 0,
|
||
|
'stats-recentupdates' => 0,
|
||
|
'stats-newjournals' => 0,
|
||
|
'stats-postsbyday' => 0,
|
||
|
'show-talkleft' => 0,
|
||
|
'memories' => 0,
|
||
|
'topicdir' => 0,
|
||
|
'tellafriend' => 0,
|
||
|
'feedster_search' => 0,
|
||
|
'community-logins' => 0,
|
||
|
);
|
||
|
|
||
|
# turn $SERVER_DOWN on while you do any maintenance
|
||
|
$SERVER_TOTALLY_DOWN = 0;
|
||
|
$SERVER_DOWN = 0;
|
||
|
$SERVER_DOWN_SUBJECT = "Maintenance";
|
||
|
$SERVER_DOWN_MESSAGE = "$SITENAME is down right now while we upgrade. It should be up in a few minutes.";
|
||
|
$MSG_READONLY_USER = "This journal is in read-only mode right now while database maintenance is performed " .
|
||
|
"on the server where the journal is located. Try again in several minutes.";
|
||
|
$MSG_NO_POST = "Due to hardware maintenance, you cannot post at this time. Watch the news page for updates.";
|
||
|
$MSG_NO_COMMENT = "Due to hardware maintenance, you cannot leave comments at this time. Watch the news " .
|
||
|
"page for updates.";
|
||
|
#$MSG_DB_UNAVAILABLE = "Sorry, database temporarily unavailable. Please see <a href='...'>...</a> for status updates.";
|
||
|
|
||
|
###
|
||
|
### Language / Scheme support
|
||
|
###
|
||
|
|
||
|
# schemes available to users.
|
||
|
# schemes will be displayed according to their order in the array,
|
||
|
# but the first item in the array is the default scheme
|
||
|
# 'title' is the printed name, while 'scheme' is the scheme name.
|
||
|
@SCHEMES = (
|
||
|
{ scheme => 'lynx', title => 'Lynx',
|
||
|
#thumb => [ 'schemethumb/lynx.png', 200, 166 ]
|
||
|
},
|
||
|
{ scheme => 'bluewhite', title => 'Blue White' },
|
||
|
);
|
||
|
|
||
|
# supported languages
|
||
|
#@LANGS = qw(en_LJ en_GB de da es fr it ru ja pt eo he nl hu ga is fi nb sv pl zh lv tr ms);
|
||
|
|
||
|
# support unicode (posts in multiple languages)? leave enabled.
|
||
|
$UNICODE = 1;
|
||
|
|
||
|
|
||
|
###
|
||
|
### Database Configuration
|
||
|
###
|
||
|
|
||
|
# database info. only the master is necessary.
|
||
|
# you should probably CHANGE THIS
|
||
|
%DBINFO = (
|
||
|
'master' => { # master must be named 'master'
|
||
|
'host' => "localhost",
|
||
|
'port' => 3306,
|
||
|
'user' => 'lj',
|
||
|
'pass' => 'ljpass',
|
||
|
'role' => {
|
||
|
'cluster1' => 1,
|
||
|
|
||
|
# optionally, apache write its access logs to a mysql database
|
||
|
#logs => 1,
|
||
|
},
|
||
|
},
|
||
|
# example of a TCP-based DB connection
|
||
|
#'somehostname' => {
|
||
|
# 'host' => "somehost",
|
||
|
# 'port' => 1234,
|
||
|
# 'user' => 'username',
|
||
|
# 'pass' => 'password',
|
||
|
#},
|
||
|
# example of a UNIX domain-socket DB connection
|
||
|
#'otherhost' => {
|
||
|
# 'sock' => "$HOME/var/mysqld.sock",
|
||
|
# 'user' => 'username',
|
||
|
# 'pass' => 'password',
|
||
|
#},
|
||
|
);
|
||
|
|
||
|
# if database logging is enabled above, should we log images or just page requests?
|
||
|
#$DONT_LOG_IMAGES = 1;
|
||
|
|
||
|
# Turn on memory/cpu usage statistics generation for database logs (requires the
|
||
|
# GTop module to be installed)
|
||
|
#$LOG_GTOP = 1;
|
||
|
|
||
|
# directory optimizations
|
||
|
$DIR_DB_HOST = "master"; # DB role to use when connecting to directory DB
|
||
|
$DIR_DB = ""; # by default, hit the main database (bad for big sites!)
|
||
|
#$DIRECTORY_SEPARATE = 1; # don't let the directory use master databases
|
||
|
|
||
|
# list of all clusters - each one needs a 'cluster$i' role in %DBINFO
|
||
|
@CLUSTERS = (1); # eg: (1, 2, 3) (for scalability)
|
||
|
|
||
|
# if any of your clusters are InnoDB based, uncomment this and update the qw()
|
||
|
# appropriately. this changes some locking behavior for those particular
|
||
|
# clusters in some of the hot codepaths that use lots of locking.
|
||
|
#%INNODB_DB = ( map { $_ => 1 } qw( 1 ) );
|
||
|
|
||
|
# can users choose which cluster they're assigned to? leave this off.
|
||
|
$ALLOW_CLUSTER_SELECT = 0;
|
||
|
|
||
|
# which cluster(s) get new users?
|
||
|
# if it's an arrayref, choose one of the listed clusters at random. you can weight
|
||
|
# new users by repeating cluster numbers, e.g. [ 1, 1, 1, 2 ] puts 75% of people on
|
||
|
# cluster 1, 25% of people on cluster 2. clusters are checked for validity before
|
||
|
# being used.
|
||
|
$DEFAULT_CLUSTER = [ 1 ];
|
||
|
|
||
|
# which cluster should syndication accounts live on?
|
||
|
$SYND_CLUSTER = 1;
|
||
|
|
||
|
# Only turn this on if you are using MySQL replication between
|
||
|
# multiple databases and have one or more slaves set to not
|
||
|
# replicated the logtext and talktext tables. Turning this on
|
||
|
# makes LJ duplicate all logtext & talktext rows into
|
||
|
# recent_logtext & recent_talktext which is then replicated.
|
||
|
# However, a cron job cleans up that table so it's never too big.
|
||
|
# LJ will try the slaves first, then the master. This is the best
|
||
|
# method of scaling your LJ installation, as disk seeks on the
|
||
|
# database for journal text is the slowest part.
|
||
|
$USE_RECENT_TABLES = 0;
|
||
|
|
||
|
|
||
|
###
|
||
|
### Account Information
|
||
|
###
|
||
|
|
||
|
# initial friends for new accounts.
|
||
|
# leave undefined if you don't want to use it.
|
||
|
#@INITIAL_FRIENDS = qw(news);
|
||
|
|
||
|
# some system accounts have so many friends it is harmful to display
|
||
|
# them. list these accounts here.
|
||
|
#%FORCE_EMPTY_FRIENDS = (
|
||
|
# '81752' => 'paidmembers'
|
||
|
# );
|
||
|
|
||
|
# list of regular expressions matching usernames that people can't have.
|
||
|
@PROTECTED_USERNAMES = ("^ex_", "^lj_");
|
||
|
|
||
|
# test accounts are special
|
||
|
@TESTACCTS = qw(test);
|
||
|
|
||
|
# props users should have by default
|
||
|
#%USERPROP_DEF = (
|
||
|
# 's1_lastn_style' => 29,
|
||
|
# 's1_friends_style' => 20,
|
||
|
# 's1_calendar_style' => 2,
|
||
|
# 's1_day_style' => 11,
|
||
|
# );
|
||
|
|
||
|
|
||
|
### User Capabilities Classes:
|
||
|
|
||
|
# default capability limits, used only when no other
|
||
|
# class-specific limit below matches.
|
||
|
%CAP_DEF = (
|
||
|
'maxfriends' => 500,
|
||
|
'userpics' => 1,
|
||
|
'checkfriends_interval' => 60,
|
||
|
'checkfriends' => 1,
|
||
|
'styles' => 0,
|
||
|
'todomax' => 25,
|
||
|
'todosec' => 0,
|
||
|
'friendsviewupdate' => 30,
|
||
|
'findsim' => 1,
|
||
|
'getselfemail' => 0,
|
||
|
);
|
||
|
|
||
|
# capability class limits.
|
||
|
# keys are bit numbers, from 0 .. 15. values are hashrefs
|
||
|
# with limit names and values (see doc/capabilities.txt)
|
||
|
# NOTE: you don't even need to have different capability classes!
|
||
|
# all users can be the same if you want, just delete all
|
||
|
# this. the important part then is %CAP_DEF, above.
|
||
|
%CAP = (
|
||
|
'0' => { # 0x01
|
||
|
'_name' => 'new user',
|
||
|
'userpics' => 1,
|
||
|
},
|
||
|
'1' => { # 0x02
|
||
|
'_name' => 'free user',
|
||
|
'userpics' => 3,
|
||
|
},
|
||
|
'2' => { # 0x04
|
||
|
'_name' => 'early adopter',
|
||
|
'userpics' => 5,
|
||
|
'styles' => 1,
|
||
|
},
|
||
|
'3' => { # 0x08
|
||
|
'_name' => 'paid user',
|
||
|
'styles' => 1,
|
||
|
'makepoll' => 1,
|
||
|
'userpics' => 10,
|
||
|
'paid' => 1,
|
||
|
'useremail' => 1,
|
||
|
'textmessaging' => 1,
|
||
|
},
|
||
|
'4' => { # 0x10
|
||
|
'_name' => 'permanent account',
|
||
|
'paid' => 1,
|
||
|
'useremail' => 1,
|
||
|
},
|
||
|
# a capability class with a name of "_moveinprogress" is required
|
||
|
# if you want to be able to move users between clusters with the
|
||
|
# provided tool. further, this class must define 'readonly' => 1
|
||
|
'5' => {
|
||
|
'_name' => '_moveinprogress',
|
||
|
'readonly' => 1,
|
||
|
},
|
||
|
);
|
||
|
|
||
|
# default capability class mask for new users:
|
||
|
# (16 bit unsigned int ... each bit is capability class flag)
|
||
|
$NEWUSER_CAPS = 2;
|
||
|
|
||
|
|
||
|
### S1 style options
|
||
|
|
||
|
$SYN_LASTN_S1 = 1; # lastn style to use for syndication accounts
|
||
|
$DONT_TOUCH_STYLES = 0; # don't touch existing styles
|
||
|
|
||
|
$DEFAULT_STYLE = {
|
||
|
'core' => 'core1',
|
||
|
'layout' => 'generator/layout',
|
||
|
'i18n' => 'generator/en',
|
||
|
};
|
||
|
|
||
|
### /admin/fileedit setup
|
||
|
# If you are using the files in htdocs/inc and are frequently editing
|
||
|
# those, you may wish to put all of these files into the database.
|
||
|
# You can instruct BML to treat all <?_include?> statements as being
|
||
|
# pulled from memcached (failover to the database) by uncommenting:
|
||
|
# $FILEEDIT_VIA_DB = 1;
|
||
|
# Alternately, you can specify that only particular files should be
|
||
|
# kept in memcache and the database by doing:
|
||
|
# %FILEEDIT_VIA_DB = ( 'support_links' => 1, );
|
||
|
|
||
|
### S2 Style Options
|
||
|
|
||
|
# which users' s2 layers should always run trusted un-cleaned?
|
||
|
#%S2_TRUSTED = ( '2' => 'whitaker' ); # userid => username
|
||
|
|
||
|
|
||
|
###
|
||
|
### Portal Options
|
||
|
###
|
||
|
|
||
|
# most of the portal options have sane default values, but if you
|
||
|
# need to override them, here's the format:
|
||
|
|
||
|
#@PORTAL_COLS = qw(main right moz); # can also include left, if you want.
|
||
|
#$PORTAL_URI = "/portal/"; # either "/" or "/portal/"
|
||
|
|
||
|
#$PORTAL_LOGGED_IN ||= {'main' => [
|
||
|
# [ 'newtolj', ''],
|
||
|
# [ 'update', 'mode=full'],
|
||
|
# ],
|
||
|
# 'right' => [
|
||
|
# [ 'goat', '', ],
|
||
|
# [ 'stats', '', ],
|
||
|
# [ 'bdays', '', ],
|
||
|
# [ 'memories', '', ],
|
||
|
# [ 'popfaq', '', ],
|
||
|
# ] };
|
||
|
|
||
|
#$PORTAL_LOGGED_OUT ||= {'main' => [
|
||
|
# [ 'newtolj', ''],
|
||
|
# [ 'update', 'mode='],
|
||
|
# ],
|
||
|
# 'right' => [
|
||
|
# [ 'goat', '', ],
|
||
|
# [ 'login', '', ],
|
||
|
# [ 'stats', '', ],
|
||
|
# [ 'randuser', '', ],
|
||
|
# [ 'popfaq', '', ],
|
||
|
# ],
|
||
|
# 'moz' => [
|
||
|
# [ 'login', '', ],
|
||
|
# ],
|
||
|
# };
|
||
|
|
||
|
# Setup support email address to not accept new emails. Basically if an
|
||
|
# address is specified below, any user who emails it out of the blue will
|
||
|
# be sent back a copy of the specified file along with their email. Users
|
||
|
# will still be allowed to respond to emails from the support system, but
|
||
|
# they can't open a request by emailing the address. The value part of
|
||
|
# the hash is the name of an include file. It will be loaded out of
|
||
|
# LJHOME/htdocs/inc. See %FILEEDIT_VIA_DB for how to make it read
|
||
|
# from memcache/DB.
|
||
|
#%DENY_REQUEST_FROM_EMAIL = (
|
||
|
# "abuse\@$DOMAIN" => "bounce-abuse",
|
||
|
#);
|
||
|
|
||
|
# Support diagnostics can be helpful if you are trying to track down a
|
||
|
# bug that has been occurring. You can turn on and off various tracking
|
||
|
# features here. Just uncomment any/all of the following lines. The
|
||
|
# gathered information will be appended to requests that the user opens
|
||
|
# through the web interface.
|
||
|
%SUPPORT_DIAGNOSTICS = (
|
||
|
# 'track_useragent' => 1,
|
||
|
);
|
||
|
|
||
|
# If you want to change the limit on how many bans a user can make, uncomment
|
||
|
# the following line. Default is 5000.
|
||
|
#$MAX_BANS = 5000;
|
||
|
|
||
|
# If you are using MogileFS on your site for userpics or other purposes, you
|
||
|
# will need to define the following hash and complete the information in it.
|
||
|
#%MOGILEFS_CONFIG = (
|
||
|
# hosts => [ '10.0.0.1:6001' ],
|
||
|
# root => '/mnt/mogdata',
|
||
|
# classes => {
|
||
|
# 'your_class' => 3, # define any special MogileFS classes you need
|
||
|
# },
|
||
|
#);
|
||
|
|
||
|
# If you have multiple internal networks and would like the MogileFS libraries
|
||
|
# to pick one network over the other, you can set the preferred IP list...
|
||
|
#%MOGILEFS_PREF_IP = (
|
||
|
# 10.0.0.1 => 10.10.0.1,
|
||
|
#);
|
||
|
#That says "if we try to connect to 10.0.0.1, instead try 10.10.0.1 first and
|
||
|
#then fall back to 10.0.0.1".
|
||
|
|
||
|
# In addition to setting up MogileFS above, you need to enable some options
|
||
|
# if you want to use MogileFS.
|
||
|
#$CAPTCHA_MOGILEFS = 1; # turn this on to put captchas in MogileFS
|
||
|
#$USERPIC_MOGILEFS = 1; # uncomment to put new userpics in MogileFS
|
||
|
|
||
|
# if you are using Perlbal to balance your web site, by default it uses
|
||
|
# reproxying to distribute the files itself. however, in some situations
|
||
|
# you may not want to do that. use this option to disable that on an
|
||
|
# item by item basis.
|
||
|
#%REPROXY_DISABLE = (
|
||
|
# userpics => 1,
|
||
|
# captchas => 1,
|
||
|
#);
|
||
|
|
||
|
# Some people on portable devices may have troubles viewing the nice site
|
||
|
# scheme you've setup, so you can specify that some user-agent prefixes
|
||
|
# should instead use fallback presentation information.
|
||
|
%MINIMAL_USERAGENT = (
|
||
|
#'Foo' => 1, # if the user-agent field starts with "Foo" ...
|
||
|
# note you can only put text here; no numbers, spaces, or symbols.
|
||
|
);
|
||
|
$MINIMAL_BML_SCHEME = 'lynx';
|
||
|
%MINIMAL_STYLE = (
|
||
|
'core' => 'core1', # default, but you can add more layers and styles... note
|
||
|
# that they must be public styles
|
||
|
);
|
||
|
|
||
|
# this is on in the default file here because most of the time you
|
||
|
# want this flag to be on. if you have an existing site and you're
|
||
|
# copying this file, make sure to only turn this flag on if you've
|
||
|
# actually migrated everything.
|
||
|
$S2COMPILED_MIGRATION_DONE = 1;
|
||
|
|
||
|
# optional LDAP support
|
||
|
# required:
|
||
|
# $LJ::LDAP_HOST = "ldap.example.com"; # anything that the Net::LDAP constructor takes
|
||
|
# $LJ::LDAP_BASE = "ou=People,dc=exampleorg,dc=com";
|
||
|
# optional:
|
||
|
# $LJ::LDAP_UID = "uid"; # field containing the username. defaults to "uid".
|
||
|
|
||
|
# if you know that your installation is behind a proxy or other fence that inserts
|
||
|
# X-Forwarded-For headers that you can trust, enable this. otherwise, don't!
|
||
|
# $TRUST_X_HEADERS = 1;
|
||
|
|
||
|
# the following values allow you to control enabling your OpenID server and consumer
|
||
|
# support.
|
||
|
$OPENID_SERVER = 1;
|
||
|
$OPENID_CONSUMER = 0;
|
||
|
|
||
|
}
|
||
|
|
||
|
1; # return true
|