forked from Wavyzz/dolibarr
164 lines
4.5 KiB
Plaintext
164 lines
4.5 KiB
Plaintext
<?php
|
|
#
|
|
# Dolibarr example for conf.php file
|
|
#
|
|
# Do not edit this file without changing its name.
|
|
# This file is used by Dolibarr setup process to create true Dolibarr
|
|
# config file called "conf.php".
|
|
#
|
|
# $Id$
|
|
|
|
|
|
# dolibarr_main_url_root
|
|
# This parameter defines the root URL of your Dolibarr index.php page.
|
|
# It must link to the directory htdocs.
|
|
# Examples:
|
|
# $dolibarr_main_url_root="http://localhost";
|
|
# $dolibarr_main_url_root="http://mydolibarrvirtualhost";
|
|
# $dolibarr_main_url_root="http://myserver/dolibarr/htdocs";
|
|
#
|
|
$dolibarr_main_url_root="";
|
|
|
|
|
|
# dolibarr_main_document_root
|
|
# This parameter contains absolute file system directory of Dolibarr
|
|
# htdocs directory
|
|
# Examples:
|
|
# $dolibarr_main_document_root="/var/www/dolibarr/htdocs";
|
|
# $dolibarr_main_document_root="C:/My web sites/dolibarr/htdocs";
|
|
#
|
|
$dolibarr_main_document_root="";
|
|
|
|
|
|
# dolibarr_main_data_root
|
|
# This parameter contains absolute file system directory of Dolibarr
|
|
# directory used to store uploaded and generated physical files.
|
|
# Examples:
|
|
# $dolibarr_main_document_root="/var/www/dolibarr/documents";
|
|
# $dolibarr_main_document_root="E:/My web sites/dolibarr/documents";
|
|
#
|
|
$dolibarr_main_data_root="";
|
|
|
|
|
|
# dolibarr_main_db_host
|
|
# This parameter contains host name or ip address of Dolibarr database
|
|
# server.
|
|
# Examples:
|
|
# $dolibarr_main_db_host="localhost";
|
|
# $dolibarr_main_db_host="127.0.0.1";
|
|
# $dolibarr_main_db_host="192.168.0.10";
|
|
# $dolibarr_main_db_host="mysql.myserver.com";
|
|
#
|
|
$dolibarr_main_db_host="";
|
|
|
|
|
|
# dolibarr_main_db_name
|
|
# This parameter contains name of Dolibarr database.
|
|
# Examples:
|
|
# $dolibarr_main_db_name="dolibarr";
|
|
# $dolibarr_main_db_name="mydatabase";
|
|
#
|
|
$dolibarr_main_db_name="";
|
|
|
|
|
|
# dolibarr_main_db_user
|
|
# This parameter contains user name used to read and write into
|
|
# Dolibarr database.
|
|
# Examples:
|
|
# $dolibarr_main_db_user="admin";
|
|
# $dolibarr_main_db_user="dolibarruser";
|
|
#
|
|
$dolibarr_main_db_user="";
|
|
|
|
|
|
# dolibarr_main_db_pass
|
|
# This parameter contains password used to read and write into
|
|
# Dolibarr database.
|
|
# Examples:
|
|
# $dolibarr_main_db_pass="myadminpass";
|
|
# $dolibarr_main_db_pass="myuserpassword";
|
|
#
|
|
$dolibarr_main_db_pass="";
|
|
|
|
|
|
# dolibarr_main_db_type
|
|
# This parameter contains the name of the driver used to access your
|
|
# Dolibarr database.
|
|
# Default value: none
|
|
# Possible values: mysql, mysqli, pgsql
|
|
# Examples:
|
|
# $dolibarr_main_db_type="mysql;
|
|
# $dolibarr_main_db_type="mysqli";
|
|
# $dolibarr_main_db_type="pgsql";
|
|
#
|
|
$dolibarr_main_db_type="";
|
|
|
|
|
|
# dolibarr_main_db_character_set
|
|
# Database character set used to store data.
|
|
# Default value: depends on database driver
|
|
# Examples:
|
|
# dolibarr_main_db_character_set="latin1";
|
|
#
|
|
$dolibarr_main_db_character_set="latin1";
|
|
|
|
|
|
# dolibarr_main_db_collation
|
|
# Database character set used to sort data.
|
|
# Default value: depends on database driver
|
|
# Examples:
|
|
# dolibarr_main_db_collation="latin1_swedish_ci";
|
|
#
|
|
$dolibarr_main_db_collation="latin1_swedish_ci";
|
|
|
|
|
|
# character_set_client
|
|
# Page code for HTML outputs.
|
|
# Default value: ISO-8859-1
|
|
# Possible values: ISO-8859-1
|
|
#
|
|
$character_set_client="ISO-8859-1";
|
|
|
|
|
|
# dolibarr_main_authentication
|
|
# This parameter contains the way authentication is done.
|
|
# If value "ldap" is used, you must also set parameters dolibarr_main_auth_ldap_*
|
|
# Default value: dolibarr
|
|
# Possible values: http, dolibarr, ldap
|
|
# Examples:
|
|
# $dolibarr_main_authentication="http";
|
|
# $dolibarr_main_authentication="dolibarr";
|
|
# $dolibarr_main_authentication="ldap";
|
|
#
|
|
|
|
|
|
# Parameters used to setup LDAP authentication.
|
|
# Uncomment them if dolibarr_main_authentication = "ldap"
|
|
#
|
|
# $dolibarr_main_auth_ldap_host="127.0.0.1";
|
|
# $dolibarr_main_auth_ldap_port="389";
|
|
# $dolibarr_main_auth_ldap_version="3";
|
|
# $dolibarr_main_auth_ldap_servertype="openldap"; # openldap, activedirectory or egroupware
|
|
#
|
|
# Following parameters should not be used in LDAP connection (deprecated ?):
|
|
# $dolibarr_main_auth_ldap_login_attribute="loginfield"; # uid or samaccountname for active directory
|
|
# $dolibarr_main_auth_ldap_dn=""; # Ex: ou=users,dc=my-domain,dc=com
|
|
# $dolibarr_main_auth_ldap_admin_login=""; # Required only if anonymous bind disabled
|
|
# $dolibarr_main_auth_ldap_admin_pass=""; # Required only if anonymous bind disabled
|
|
#
|
|
# $dolibarr_main_auth_ldap_debug="false";
|
|
|
|
|
|
# Parameters not used yet
|
|
# dolibarr_smarty_libs_dir
|
|
# Examples:
|
|
# $dolibarr_smarty_libs_dir="/var/www/dolibarr/external-libs/smarty/libs/";
|
|
# $dolibarr_smarty_compile="/var/www/dolibarr/documents/temp/smarty_templates";
|
|
# $dolibarr_smarty_cache="/var/www/dolibarr/documents/temp/smarty_cache";
|
|
#
|
|
$dolibarr_smarty_libs_dir="";
|
|
$dolibarr_smarty_compile="";
|
|
$dolibarr_smarty_cache="";
|
|
|
|
?>
|