X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=config.php.sample;h=d62a54fe74a14ade40f6e11023030816683ce835;hb=b112b326402200c164fc5c9678d4aff656f7afd4;hp=c2b27408cd52aa2db712a2e34fd9281da4b3f8fa;hpb=986a32223177a759b0ef071822d227011ee1b3c7;p=quix0rs-gnu-social.git diff --git a/config.php.sample b/config.php.sample index c2b27408cd..d62a54fe74 100644 --- a/config.php.sample +++ b/config.php.sample @@ -37,6 +37,9 @@ $config['site']['path'] = 'laconica'; # Enables extra log information, for example full details of PEAR DB errors #$config['site']['logdebug'] = true; +#To set your own logo, overriding the one in the theme +#$config['site']['logo'] = '/mylogo.png'; + # This is a PEAR DB DSN, see http://pear.php.net/manual/en/package.database.db.intro-dsn.php # Set it to match your actual database @@ -165,3 +168,19 @@ $config['sphinx']['port'] = 3312; #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';