Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
4d627d66
Commit
4d627d66
authored
12 years ago
by
Bart Visscher
Browse files
Options
Downloads
Patches
Plain Diff
Add help texts to config options in config.sample.php
parent
98bc9160
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/config.sample.php
+33
-4
33 additions, 4 deletions
config/config.sample.php
with
33 additions
and
4 deletions
config/config.sample.php
+
33
−
4
View file @
4d627d66
...
...
@@ -3,31 +3,57 @@
define
(
"DEBUG"
,
true
);
$CONFIG
=
array
(
/* Flag to indicate OwnCloud is successfully installed (true = installed) */
"installed"
=>
false
,
/* Type of database, can be sqlite, mysql or pgsql */
"dbtype"
=>
"sqlite"
,
/* Name of the OwnCloud database */
"dbname"
=>
"owncloud"
,
/* User to access the OwnCloud database */
"dbuser"
=>
""
,
/* Password to access the OwnCloud database */
"dbpassword"
=>
""
,
/* Host running the OwnCloud database */
"dbhost"
=>
""
,
/* Prefix for the OwnCloud tables in the database */
"dbtableprefix"
=>
""
,
/* Force use of HTTPS connection (true = use HTTPS) */
"forcessl"
=>
false
,
"enablebackup"
=>
false
,
/* Theme to use for OwnCloud */
"theme"
=>
""
,
/* Path to the 3rdparty directory */
"3rdpartyroot"
=>
""
,
/* URL to the 3rdparty directory, as seen by the browser */
"3rdpartyurl"
=>
""
,
/* Default app to load on login */
"defaultapp"
=>
"files"
,
/* Enable the help menu item in the settings */
"knowledgebaseenabled"
=>
true
,
"knowledgebaseurl"
=>
""
,
/* URL to use for the help page, server should understand OCS */
"knowledgebaseurl"
=>
"http://api.apps.owncloud.com/v1"
,
/* Enable installing apps from the appstore */
"appstoreenabled"
=>
true
,
"appstoreurl"
=>
""
,
/* URL of the appstore to use, server should understand OCS */
"appstoreurl"
=>
"http://api.apps.owncloud.com/v1"
,
/* Mode to use for sending mail, can be sendmail, smtp, qmail or php, see PHPMailer docs */
"mail_smtpmode"
=>
"sendmail"
,
/* Host to use for sending mail, depends on mail_smtpmode if this is used */
"mail_smtphost"
=>
"127.0.0.1"
,
/* authentication needed to send mail, depends on mail_smtpmode if this is used
* (false = disable authentication)
*/
"mail_smtpauth"
=>
false
,
/* Username to use for sendmail mail, depends on mail_smtpauth if this is used */
"mail_smtpname"
=>
""
,
/* Password to use for sendmail mail, depends on mail_smtpauth if this is used */
"mail_smtppassword"
=>
""
,
/* Check 3rdparty apps for malicious code fragments */
"appcodechecker"
=>
""
,
"log_type"
=>
""
,
/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */
"log_type"
=>
"owncloud"
,
/* File for the owncloud logger to log to, (default is ownloud.log in the data dir */
"logfile"
=>
""
,
/* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */
"loglevel"
=>
""
,
"passwordsalt"
=>
""
,
"updatechecker"
=>
true
,
...
...
@@ -36,6 +62,9 @@ $CONFIG = array(
* in the admin apps menu.
*/
"writable_appsdir"
=>
true
,
/* The directory where the user data is stored, default to data in the owncloud
* directory. The sqlite database is also stored here, when sqlite is used.
*/
// "datadirectory" => ""
);
?>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment