Project

General

Profile

Owncloud cli cheatsheet » History » Version 2

Jessie Lee, 03/16/2016 01:35 PM

1 1 Jessie Lee
{{lastupdated_at}} by {{lastupdated_by}}
2
3
{{>toc}}
4
5
h1. Owncloud cli cheatsheet
6
7
h2. Architecture 
8
9
* Owncloud by default is installed to /var/www/owncloud
10
* The apache conf file is in /etc/apache2/conf-available/owncloud.conf
11
** by default this redirects any http[s[://[url]/owncloud to the owncloud directory
12
** I often change this to redirect / to owncloud if on subdomain or office fileserver
13
* owncloud config file is in /var/www/owncloud/config/config.php
14
** note: if setting changes in the config file do not take, check the permissions for this file
15
* the owncloud directory also has a detailed .htaccess file that is vital to the security of owncloud
16
* The data directory can be found in the config file and is also the location of the owncloud.log file
17
** the data directory can and at office servers is often supplemented or replaced by local storage or SMB
18 2 Jessie Lee
* the backend database is mysql which is used by default for everything.
19
** some larger installs (ex. NDWA) use redis instead of mysql for file locking. 
20
* caching is performed by memcached or redis
Go to top