X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=config.php.sample;h=d976b523b5f9de5cd742a7ece165153bb5c1dc8e;hb=07086d139168a183110bb41671ddd5b5ad333e4f;hp=77ec4e815cd9b360c58c5cb637635372b989f867;hpb=001974ad78d5f90975dbf6bf10054e9d406e78a5;p=quix0rs-gnu-social.git diff --git a/config.php.sample b/config.php.sample index 77ec4e815c..d976b523b5 100644 --- a/config.php.sample +++ b/config.php.sample @@ -26,6 +26,8 @@ $config['site']['path'] = 'laconica'; #If you don't want to let users register (say, for a one-person install) #Crude but effective -- register everybody, then lock down #$config['site']['closed'] = true; +#Only allow registration for people invited by another user +#$config['site']['inviteonly'] = true; # If you want logging sent to a file instead of syslog #$config['site']['logfile'] = '/tmp/laconica.log'; @@ -34,7 +36,7 @@ $config['site']['path'] = 'laconica'; # Set it to match your actual database $config['db']['database'] = 'mysql://laconica:microblog@localhost/laconica'; -#$config['db']['ini_your_db_name'] = $config['db']['schema_location'].'/stoica.ini'; +#$config['db']['ini_your_db_name'] = $config['db']['schema_location'].'/laconica.ini'; # *** WARNING *** WARNING *** WARNING *** WARNING *** # Setting debug to a non-zero value will expose your DATABASE PASSWORD to Web users. # !!!!!! DO NOT SET THIS ON PRODUCTION SERVERS !!!!!! DB_DataObject's bug, btw, not @@ -89,3 +91,23 @@ $config['db']['database'] = 'mysql://laconica:microblog@localhost/laconica'; #optionally show non-local messages in public timeline #$config['public']['localonly'] = false; + +#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';