diff options
author | Frank Karlitschek <frank@owncloud.org> | 2014-06-13 18:09:51 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2014-06-13 18:09:51 +0200 |
commit | 87101e6638097d7c5397fd5ce926b0492be4fa6c (patch) | |
tree | 75a956cbb93feedc4e2fd8a723ef6694ad20f869 /config | |
parent | c09f5680c98d66d6e5a0fe793561194ecafed3ea (diff) | |
parent | 73062040e68212ac6e92d36211ca0bef91777589 (diff) | |
download | nextcloud-server-87101e6638097d7c5397fd5ce926b0492be4fa6c.tar.gz nextcloud-server-87101e6638097d7c5397fd5ce926b0492be4fa6c.zip |
Merge pull request #9018 from owncloud/dbms-socket-support
Refactor OC_DB::connect() to properly support sockets.
Diffstat (limited to 'config')
-rwxr-xr-x | config/config.sample.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 4b1ab2fce5f..6da00fc12a5 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -26,7 +26,7 @@ $CONFIG = array( /* Password to access the ownCloud database */ "dbpassword" => "", -/* Host running the ownCloud database */ +/* Host running the ownCloud database. To specify a port use "HOSTNAME:####"; to specify a unix sockets use "localhost:/path/to/socket". */ "dbhost" => "", /* Prefix for the ownCloud tables in the database */ |