mirror of
https://github.com/friendica/friendica
synced 2025-07-12 04:19:38 +02:00
add install notes
This commit is contained in:
parent
7a21a000a2
commit
c2106cb9df
2 changed files with 50 additions and 0 deletions
24
htconfig.php
Normal file
24
htconfig.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
// Set the following for your MySQL installation
|
||||
// Copy or rename this file to .htconfig.php
|
||||
|
||||
$db_host = 'your.mysqlhost.com';
|
||||
$db_user = 'mysqlusername';
|
||||
$db_pass = 'mysqlpassword';
|
||||
$db_data = 'mysqldatabasename';
|
||||
|
||||
// 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.
|
||||
|
||||
$default_timezone = 'Australia/Sydney';
|
||||
|
||||
// What is your site name?
|
||||
|
||||
$a->config['sitename'] = "DFRN developer";
|
||||
|
||||
// At the present time you can have REGISTER_OPEN
|
||||
// or REGISTER_CLOSED. But register your personal account
|
||||
// first before you close it.
|
||||
|
||||
$a->config['register_policy'] = REGISTER_OPEN;
|
Loading…
Add table
Add a link
Reference in a new issue