mirror of https://github.com/perkeep/perkeep.git
Start of server-config docs. Fix some links.
Change-Id: I8aa88bc9ed603b16bad8e00a41649f30e4bbb642
This commit is contained in:
parent
6946ffe7ae
commit
fe2c9583d4
|
@ -4,14 +4,20 @@
|
|||
directory</a> or in the source itself. It's now being promoted to
|
||||
HTML, though:</p>
|
||||
|
||||
<h2>Overview</h2>
|
||||
<h2>For Users</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="/docs/server-config">Server Config</a>: how to configure your Camlistore server</li>
|
||||
<li><a href="/cmd/">Commands</a>: Camlistore command-line tools</li>
|
||||
</ul>
|
||||
|
||||
<h2>For Developers</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="/docs/arch">Architecture</a>: the pieces, layers, and how they interact</li>
|
||||
<li><a href="/docs/principles">Principles</a>: our base principles, goals, assumptions</li>
|
||||
<li><a href="/docs/terms">Terminology</a>: let's agree on terms to stay sane</li>
|
||||
<li><a href="/docs/uses">Use Cases</a>: what one might do with all this (or at least our aspirations)</li>
|
||||
<li><a href="/cmd/">Commands</a>: Camlistore command-line tools</li>
|
||||
<li><a href="/docs/schema">Schema</a>: how we model data in Camlistore</li>
|
||||
<li><a href="/docs/json-signing">JSON Signing</a></li>
|
||||
<li><a href="/docs/sharing">Sharing</a></li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<h2>Libraries</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="/code/?p=camlistore.git;a=tree;f=pkg/jsonsign;hb=HEAD">Go</a></li>
|
||||
<li><a href="/pkg/jsonsign">Go</a></li>
|
||||
</ul>
|
||||
|
||||
</ul>
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
<h1>Configuring the server</h1>
|
||||
|
||||
<p>The server's config file is JSON. It can either be in simple mode (for basic configurations), or in low-level mode (for any sort of crazy configuration).</p>
|
||||
|
||||
<p>This page documents the simple configuration mode.</p>
|
||||
|
||||
<p>If you visit your Camlistore server's /setup page (by default, at
|
||||
http://localhost:3179/setup) you can modify the config file from your
|
||||
web browser and restart the server.</p>
|
||||
|
||||
<h1>Configuration Keys & Values</h1>
|
||||
|
||||
<ul>
|
||||
<li><b><code>auth</code></b>: the authentication mechanism to use.
|
||||
<li>... TODO: finish ...</li>
|
||||
|
||||
</ul>
|
Loading…
Reference in New Issue