X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=config.php.sample;h=e70d9ab46e843bbb6c1a2fa2c98a9ae6133aedfa;hb=b12e72ae312488caf7cb1e1a396eb05dd38326a9;hp=dea20ec9512a2a412338a848930dbe17588ed21c;hpb=516996fe9fc8d82a5f2dc719a360e4005948326c;p=quix0rs-gnu-social.git diff --git a/config.php.sample b/config.php.sample index dea20ec951..e70d9ab46e 100644 --- a/config.php.sample +++ b/config.php.sample @@ -1,7 +1,13 @@ 'localhost', +# 'port' => 25, +# ); +#For incoming email, if enabled. Defaults to site server name. +#$config['mail']['domain'] = 'incoming.example.net'; + +#exponential decay factor for tags, default 10 days +#raise this if traffic is slow, lower it if it's fast +#$config['tag']['dropoff'] = 86400.0 * 10; + +#exponential decay factor for popular (most favorited notices) +#default 10 days -- similar to tag dropoff +#$config['popular']['dropoff'] = 86400.0 * 10; + +#optionally show non-local messages in public timeline +#$config['public']['localonly'] = false; + +#hide certain users from public pages, by ID +#$config['public']['blacklist'][] = 123; +#$config['public']['blacklist'][] = 2307; + +#Mark certain notice sources as automatic and thus not +#appropriate for public feed +#$config['public]['autosource'][] = 'twitterfeed'; +#$config['public]['autosource'][] = 'rssdent'; +#$config['public]['autosource'][] = 'Ping.Fm'; +#$config['public]['autosource'][] = 'HelloTxt'; +#$config['public]['autosource'][] = 'Updating.Me'; + +#Do notice broadcasts offline +#If you use this, you must run the six offline daemons in the +#background. See the README for details. +#$config['queue']['enabled'] = true; + +#The following customise the behaviour of the various daemons: +#$config['daemon']['piddir'] = '/var/run'; +#$config['daemon']['user'] = false; +#$config['daemon']['group'] = false; + +#For installations with high traffic, laconica can use MemCached to cache +#frequently requested information. Only enable the following if you have +#MemCached up and running: +#$config['memcached']['enabled'] = false; +#$config['memcached']['server'] = 'localhost'; +#$config['memcached']['port'] = 11211; + +#Twitter integration source attribute. Note: default is Laconica +#$config['integration']['source'] = 'Laconica'; + +# Edit throttling. Off by default. If turned on, you can only post 20 notices +# every 10 minutes. Admins may want to play with the settings to minimize inconvenience for +# real users without getting uncontrollable floods from spammers or runaway bots. + +#$config['throttle']['enabled'] = true; +#$config['throttle']['count'] = 100; +#$config['throttle']['timespan'] = 3600; + +# List of users banned from posting (nicknames and/or IDs) +#$config['profile']['banned'][] = 'hacker'; +#$config['profile']['banned'][] = 12345; + +# Config section for the built-in Facebook application +#$config['facebook']['apikey'] = 'APIKEY'; +#$config['facebook']['secret'] = 'SECRET'; + +# Add Google Analytics +# require_once('plugins/GoogleAnalyticsPlugin.php'); +# $ga = new GoogleAnalyticsPlugin('your secret code'); + +# Use Templating (template: /tpl/index.php) +# require_once('plugins/TemplatePlugin.php'); +# $tpl = new TemplatePlugin(); + +#Don't allow saying the same thing more than once per hour +#$config['site']['dupelimit'] = 3600; +#Don't enforce the dupe limit +#$config['site']['dupelimit'] = -1; + +#Base string for minting Tag URIs in Atom feeds. Defaults to +#"yourserver,2009". This needs to be configured properly for your Atom +#feeds to validate. See: http://www.faqs.org/rfcs/rfc4151.html and +#http://taguri.org/ Examples: +#$config['integration']['taguri'] = 'example.net,2008'; +#$config['integration']['taguri'] = 'admin@example.net,2009-03-09' +#Don't use SSL +#$config['site']['ssl'] = 'never'; +#Use SSL only for sensitive pages (like login, password change) +#$config['site']['ssl'] = 'sometimes'; +#Use SSL for all pages +#$config['site']['ssl'] = 'always'; +#Use a different hostname for SSL-encrypted pages +#$config['site']['sslserver'] = 'secure.example.org';