Linux/ownCloud: Difference between revisions
< Linux
No edit summary |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
* http://www.crucial.com.au/blog/2013/04/11/setting-up-the-new-owncloud-5-0-with-nginx-and-mysql/ | * http://www.crucial.com.au/blog/2013/04/11/setting-up-the-new-owncloud-5-0-with-nginx-and-mysql/ | ||
* http://cloudlog.de/eigenen-firefox-sync-server-mit-owncloud-nutzen/ | * http://cloudlog.de/eigenen-firefox-sync-server-mit-owncloud-nutzen/ | ||
== domain authentication == | |||
<pre> | |||
'user_backends' => | |||
array ( | |||
0 => | |||
array ( | |||
'class' => 'OC_User_SMB', | |||
'arguments' => | |||
array ( | |||
0 => 'WINDOWSDOMAIN', | |||
), | |||
), | |||
), | |||
</pre> | |||
[[Category:Linux/Webservices]] | |||
[[Category:Linux]] |
Latest revision as of 14:10, 1 April 2017
- http://www.crucial.com.au/blog/2013/04/11/setting-up-the-new-owncloud-5-0-with-nginx-and-mysql/
- http://cloudlog.de/eigenen-firefox-sync-server-mit-owncloud-nutzen/
domain authentication
'user_backends' => array ( 0 => array ( 'class' => 'OC_User_SMB', 'arguments' => array ( 0 => 'WINDOWSDOMAIN', ), ), ),