Blame view

sources/core/doc/admin/index.html 11.3 KB
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
  
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  
  
  <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      
6d9380f96   Cédric Dupont   Update sources OC...
10
      <title>Introduction &mdash; ownCloud Administrators Manual 7.0 documentation</title>
d1bafeea1   Kload   [fix] Upgrade to ...
11
12
13
14
15
16
17
18
19
      
      <link rel="stylesheet" href="_static/style.css" type="text/css" />
      <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
      <link rel="stylesheet" href="_static/style.css" type="text/css" />
      <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
      
      <script type="text/javascript">
        var DOCUMENTATION_OPTIONS = {
          URL_ROOT:    '',
6d9380f96   Cédric Dupont   Update sources OC...
20
          VERSION:     '7.0',
d1bafeea1   Kload   [fix] Upgrade to ...
21
22
23
24
25
26
27
28
29
          COLLAPSE_INDEX: false,
          FILE_SUFFIX: '.html',
          HAS_SOURCE:  true
        };
      </script>
      <script type="text/javascript" src="_static/jquery.js"></script>
      <script type="text/javascript" src="_static/underscore.js"></script>
      <script type="text/javascript" src="_static/doctools.js"></script>
      <script type="text/javascript" src="_static/bootstrap.js"></script>
6d9380f96   Cédric Dupont   Update sources OC...
30
      <link rel="top" title="ownCloud Administrators Manual 7.0 documentation" href="#" />
d1bafeea1   Kload   [fix] Upgrade to ...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
      <link rel="next" title="Installation" href="installation/index.html" />
      <link rel="prev" title="ownCloud documentation contents" href="contents.html" />
  <script type="text/javascript">
  (function () {
    /**
     * Patch TOC list.
     *
     * Will mutate the underlying span to have a correct ul for nav.
     *
     * @param $span: Span containing nested UL's to mutate.
     * @param minLevel: Starting level for nested lists. (1: global, 2: local).
     */
    var patchToc = function ($ul, minLevel) {
      var findA;
  
      // Find all a "internal" tags, traversing recursively.
      findA = function ($elem, level) {
        var level = level || 0,
          $items = $elem.find("> li > a.internal, > ul, > li > ul");
  
        // Iterate everything in order.
        $items.each(function (index, item) {
          var $item = $(item),
            tag = item.tagName.toLowerCase(),
            pad = 15 + ((level - minLevel) * 10);
  
          if (tag === 'a' && level >= minLevel) {
            // Add to existing padding.
            $item.css('padding-left', pad + "px");
            console.log(level, $item, 'padding-left', pad + "px");
          } else if (tag === 'ul') {
            // Recurse.
            findA($item, level + 1);
          }
        });
      };
  
      console.log("HERE");
      findA($ul);
    };
  
    $(document).ready(function () {
      // Add styling, structure to TOC's.
      $(".dropdown-menu").each(function () {
        $(this).find("ul").each(function (index, item){
          var $item = $(item);
          $item.addClass('unstyled');
        });
        $(this).find("li").each(function () {
          $(this).parent().append(this);
        });
      });
  
      // Patch in level.
      patchToc($("ul.globaltoc"), 2);
      patchToc($("ul.localtoc"), 2);
  
      // Enable dropdown.
      $('.dropdown-toggle').dropdown();
    });
  }());
  </script>
  
    </head>
    <body>
    
  
  <div class="container">
    <div class="content">
      <div class="page-header">
        <h1><a href="contents.html">ownCloud Administrators Manual</a></h1>
  
      </div>
      
  			<div class="row">
  				<div class="span3">
  					<div class="sidebar">
  						<div class="well">
  							<div class="menu-support-container">
  								<ul id="menu-support" class="menu">
  									<ul>
  										<li><a href="contents.html">Overview</a></li>
  									</ul>
                    <ul class="current">
6d9380f96   Cédric Dupont   Update sources OC...
115
116
117
118
119
120
  <li class="toctree-l1 current"><a class="current reference internal" href="">Introduction</a><ul>
  <li class="toctree-l2"><a class="reference internal" href="#target-audience">Target Audience</a></li>
  <li class="toctree-l2"><a class="reference internal" href="#document-structure">Document Structure</a><ul>
  <li class="toctree-l3"><a class="reference internal" href="#installation">Installation</a></li>
  <li class="toctree-l3"><a class="reference internal" href="#configuration">Configuration</a></li>
  <li class="toctree-l3"><a class="reference internal" href="#maintenance">Maintenance</a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
121
122
  </ul>
  </li>
d1bafeea1   Kload   [fix] Upgrade to ...
123
124
125
126
127
128
  </ul>
  </li>
  </ul>
  <ul>
  <li class="toctree-l1"><a class="reference internal" href="installation/index.html">Installation</a></li>
  <li class="toctree-l1"><a class="reference internal" href="configuration/index.html">Configuration</a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
129
  <li class="toctree-l1"><a class="reference internal" href="maintenance/index.html">Maintenance</a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
130
131
132
133
134
135
136
137
138
139
140
141
142
  <li class="toctree-l1"><a class="reference internal" href="issues/index.html">Issues</a></li>
  </ul>
  
  								</ul>
  							</div>
  						</div>
  					</div>
  				</div>
          
  
  				<div class="span9">
  					<div class="page-content">
  						
6d9380f96   Cédric Dupont   Update sources OC...
143
144
145
146
147
148
149
150
    <div class="section" id="introduction">
  <h1>Introduction<a class="headerlink" href="#introduction" title="Permalink to this headline">¶</a></h1>
  <p>Welcome to the ownCloud Administrator Guide.  This guide describes
  administrator tasks for ownCloud; a flexible, open source, file synchronization
  and sharing solution. ownCloud is comprised of a server running on either a
  Linux or Microsoft Word platform as well as client applications for Microsoft
  Windows, Mac OS X and Linux (Desktop Client) and mobile clients for both the
  Android and Apple iOS operating system.</p>
d1bafeea1   Kload   [fix] Upgrade to ...
151
  <div class="section" id="target-audience">
6d9380f96   Cédric Dupont   Update sources OC...
152
153
154
155
156
157
158
159
  <h2>Target Audience<a class="headerlink" href="#target-audience" title="Permalink to this headline">¶</a></h2>
  <p>This guide is targeted towards people who want to install, administer, and
  optimize the ownCloud server. If you want to learn more about the ownCloud Web
  user interface or how to install clients on the server, refer to the following:</p>
  <ul class="simple">
  <li><a class="reference external" href="http://doc.owncloud.com/">User Manual</a></li>
  <li><a class="reference external" href="http://doc.owncloud.com/">Desktop Client Manual</a></li>
  </ul>
d1bafeea1   Kload   [fix] Upgrade to ...
160
  </div>
6d9380f96   Cédric Dupont   Update sources OC...
161
162
163
164
165
  <div class="section" id="document-structure">
  <h2>Document Structure<a class="headerlink" href="#document-structure" title="Permalink to this headline">¶</a></h2>
  <p>This document is broken out into three major sections &#8211; Installation,
  Configuration, and Maintenance.  The following sections provide detailed
  information about various tasks associated with each of these sections.</p>
d1bafeea1   Kload   [fix] Upgrade to ...
166
  <div class="section" id="installation">
6d9380f96   Cédric Dupont   Update sources OC...
167
168
169
  <h3>Installation<a class="headerlink" href="#installation" title="Permalink to this headline">¶</a></h3>
  <p>This section provides detailed instructions on how to install ownCloud in
  different scenarios.  It contains the following topics:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
170
171
172
173
  <ul class="simple">
  <li><a class="reference internal" href="installation/installation_linux.html"><em>Linux Distributions</em></a> (recommended)</li>
  <li><a class="reference internal" href="installation/installation_windows.html"><em>Windows 7 and Windows Server 2008</em></a></li>
  <li><a class="reference internal" href="installation/installation_source.html"><em>Manual Installation</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
174
  <li><a class="reference internal" href="installation/installation_others.html"><em>Other Installation Methods</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
175
176
177
178
  <li><a class="reference internal" href="installation/installation_ucs.html"><em>Univention Corporate Server</em></a></li>
  <li><a class="reference internal" href="installation/installation_macos.html"><em>Mac OS X</em></a> (not supported)</li>
  <li><a class="reference internal" href="installation/installation_appliance.html"><em>Appliances</em></a></li>
  </ul>
6d9380f96   Cédric Dupont   Update sources OC...
179
180
181
182
183
184
  <div class="admonition note">
  <p class="first admonition-title">Note</p>
  <p class="last">If you just want to try out ownCloud in a virtual machine, without
  any configuration, refer to <a class="reference internal" href="installation/installation_appliance.html"><em>Appliances</em></a>.  For
  your convenience, this topic contains ready-to-use images.</p>
  </div>
d1bafeea1   Kload   [fix] Upgrade to ...
185
186
  </div>
  <div class="section" id="configuration">
6d9380f96   Cédric Dupont   Update sources OC...
187
188
189
  <h3>Configuration<a class="headerlink" href="#configuration" title="Permalink to this headline">¶</a></h3>
  <p>This section describes how to configure ownCloud and your web server.  It
  contains the following topics:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
190
  <ul class="simple">
6d9380f96   Cédric Dupont   Update sources OC...
191
  <li><a class="reference internal" href="configuration/configuration_apps.html"><em>Apps Configuration</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
192
  <li><a class="reference internal" href="configuration/configuration_users.html"><em>User Management</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
193
194
195
196
  <li><a class="reference internal" href="configuration/configuration_database.html"><em>Database Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/auth_ldap.html"><em>User Authentication with LDAP</em></a></li>
  <li><a class="reference internal" href="configuration/server_to_server_managing.html"><em>Managing Server-to-Server Sharing Access</em></a></li>
  <li><a class="reference internal" href="configuration/custom_mount_config_gui.html"><em>Custom Mount Configuration (GUI)</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
197
  <li><a class="reference internal" href="configuration/custom_mount_config.html"><em>Custom Mount Configuration</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
198
199
200
201
202
  <li><a class="reference internal" href="configuration/background_jobs.html"><em>Defining Background Jobs</em></a></li>
  <li><a class="reference internal" href="configuration/configuration_mail.html"><em>Mail Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/configuration_automation.html"><em>Defining Automatic Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/configuration_encryption.html"><em>Use Server-Side Encryption</em></a></li>
  <li><a class="reference internal" href="configuration/configuring_big_file_upload.html"><em>Uploading big files &gt; 512MB (as set by default)</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
203
204
  <li><a class="reference internal" href="configuration/configuration_reverseproxy.html"><em>Reverse Proxy Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/xsendfile.html"><em>Serving static files via web server</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
205
  <li><a class="reference internal" href="configuration/configuration_3rdparty.html"><em>Using Third Party Components</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
206
  <li><a class="reference internal" href="configuration/custom_user_backend.html"><em>Custom User Backend Configuration</em></a></li>
6d9380f96   Cédric Dupont   Update sources OC...
207
208
209
210
  <li><a class="reference internal" href="configuration/configuration_custom_clients.html"><em>Custom Client Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/configuration_knowledgebase.html"><em>Knowledge Base Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/configuration_logging.html"><em>Logging Configuration</em></a></li>
  <li><a class="reference internal" href="configuration/configuration_language.html"><em>Language Configuration</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
211
212
213
  </ul>
  </div>
  <div class="section" id="maintenance">
6d9380f96   Cédric Dupont   Update sources OC...
214
215
216
217
  <h3>Maintenance<a class="headerlink" href="#maintenance" title="Permalink to this headline">¶</a></h3>
  <p>This sections describes the maintenance tasks associated with the ownCloud
  server (for example, updating or migrating to a new version of ownCloud).  It
  contains the following topics:</p>
d1bafeea1   Kload   [fix] Upgrade to ...
218
  <ul class="simple">
6d9380f96   Cédric Dupont   Update sources OC...
219
  <li><a class="reference internal" href="maintenance/enable_maintenance.html"><em>Maintenance Mode Configuration</em></a></li>
d1bafeea1   Kload   [fix] Upgrade to ...
220
221
222
223
224
  <li><a class="reference internal" href="maintenance/migrating.html"><em>Migrating ownCloud Installations</em></a></li>
  <li><a class="reference internal" href="maintenance/update.html"><em>Updating ownCloud</em></a></li>
  </ul>
  </div>
  </div>
6d9380f96   Cédric Dupont   Update sources OC...
225
  </div>
d1bafeea1   Kload   [fix] Upgrade to ...
226
227
228
229
230
231
232
233
234
235
  
  
  					</div>
  				</div>
  			</div>
      
    </div>
  </div>
    </body>
  </html>