streams/install/htconfig.sample.php

97 lines
4 KiB
PHP
Raw Permalink Normal View History

2010-07-11 10:35:06 +00:00
<?php
2021-12-03 03:01:39 +00:00
// If automatic system installation fails:
2010-10-07 11:08:03 +00:00
2021-12-03 03:01:39 +00:00
// Copy or rename this file to .htconfig.php in the top level
2015-05-05 10:59:51 +00:00
// Hubzilla directory
2010-07-11 10:35:06 +00:00
2010-10-07 11:08:03 +00:00
// Why .htconfig.php? Because it contains sensitive information which could
2021-12-03 03:01:39 +00:00
// give somebody complete control of your database. Apache's default
// configuration denies access to and refuses to serve any file beginning
2010-10-07 11:08:03 +00:00
// with .ht
// Then set the following for your MySQL installation
$db_host = 'your.mysqlhost.com'; // Use 'localhost' if you aren't using a remote server
$db_port = 0; // leave 0 for default or set your port
2010-07-11 10:35:06 +00:00
$db_user = 'mysqlusername';
$db_pass = 'mysqlpassword';
$db_data = 'mysqldatabasename';
2016-01-18 22:47:16 +00:00
$db_type = 0; // use 1 for postgres, 0 for mysql
2024-05-12 00:03:37 +00:00
$db_vrsn = ''; // Required for doctrine
/*
2021-12-03 03:01:39 +00:00
* Notice: Many of the following settings will be available in the admin panel
* after a successful site install. Once they are set in the admin panel, they
* are stored in the DB - and the DB setting will over-ride any corresponding
* setting in this file
*
2021-12-03 03:01:39 +00:00
* The command-line tool util/config is able to query and set the DB items
* directly if for some reason the admin panel is not available and a system
2021-12-03 03:01:39 +00:00
* setting requires modification.
*
2021-12-03 03:01:39 +00:00
*/
2010-07-11 10:35:06 +00:00
// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
// It can be changed later and only applies to timestamps for anonymous viewers.
App::$config['system']['timezone'] = 'America/Los_Angeles';
2010-07-11 10:35:06 +00:00
// What is your site name? DO NOT ADD A TRAILING SLASH!
2010-07-11 10:35:06 +00:00
App::$config['system']['baseurl'] = 'https://mysite.example';
2020-11-16 20:34:52 +00:00
App::$config['system']['sitename'] = "Zap";
2016-03-31 23:06:03 +00:00
App::$config['system']['location_hash'] = 'if the auto install failed, put a unique random string here';
2010-07-11 10:35:06 +00:00
// These lines set additional security headers to be sent with all responses
// You may wish to set transport_security_header to 0 if your server already sends
// this header. content_security_policy may need to be disabled if you wish to
// run the piwik analytics plugin or include other offsite resources on a page
2016-03-31 23:06:03 +00:00
App::$config['system']['transport_security_header'] = 1;
App::$config['system']['content_security_policy'] = 1;
App::$config['system']['ssl_cookie_protection'] = 1;
2010-07-29 08:22:00 +00:00
// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
2021-12-03 03:01:39 +00:00
// Be certain to create your own personal account before setting
// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
2010-07-29 08:22:00 +00:00
// the registration page. REGISTER_APPROVE requires you set 'admin_email'
// to the email address of an already registered person who can authorise
2021-12-03 03:01:39 +00:00
// and/or approve/deny the request.
2010-07-11 10:35:06 +00:00
// In order to perform system administration via the admin panel, admin_email
// must precisely match the email address of the person logged in.
2024-06-14 21:55:48 +00:00
App::$config['system']['register_policy'] = REGISTER_APPROVE;
2016-03-31 23:06:03 +00:00
App::$config['system']['register_text'] = '';
App::$config['system']['admin_email'] = '';
2010-07-19 03:49:10 +00:00
// Location of PHP command line processor
2016-03-31 23:06:03 +00:00
App::$config['system']['php_path'] = 'php';
// Configure how we communicate with directory servers.
// DIRECTORY_MODE_NORMAL = directory client, we will find a directory (all of your member's queries will be directed elsewhere)
// DIRECTORY_MODE_SECONDARY = caching directory or mirror (keeps in sync with realm primary [adds significant cron execution time])
// DIRECTORY_MODE_PRIMARY = main directory server (you do not want this unless you are operating your own realm. one per realm.)
// DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services (only local site members in directory)
2016-03-31 23:06:03 +00:00
App::$config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL;
// PHP error logging setup
// Before doing this ensure that the webserver has permission
// to create and write to php.out in the top level Red directory,
// or change the name (below) to a file/path where this is allowed.
2021-03-09 01:54:35 +00:00
ini_set('display_errors', '0');
// Uncomment the following 4 lines to turn on PHP error logging.
2021-12-03 03:01:39 +00:00
//error_reporting(E_ERROR | E_PARSE );
//ini_set('error_log','php.out');
//ini_set('log_errors','1');