diff --git a/website/content/docs/release/0.1 b/website/content/docs/release/0.1 index a4d4f1595..ac45f1276 100644 --- a/website/content/docs/release/0.1 +++ b/website/content/docs/release/0.1 @@ -40,6 +40,7 @@ been using it ourselves for a year.
camtool sync
: The camtool command supports syncing from servers (or local disk blob directories) to other servers (or other local disk blob directories), as well as a "third-leg" mode, where you can sync from A to B> by using the network to communicate differences, but instead copying missing blobs to destination C (e.g. a local portable harddisk to be manually transported to B)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).
+The server's config file at $HOME/.camlistore/server-config.json is JSON. It can either be in simple mode (for basic configurations), or in low-level mode (for any sort of crazy configuration).
This page documents the simple configuration mode.
@@ -11,7 +11,21 @@ web browser and restart the server.auth
: the authentication mechanism to use.
-auth
: the authentication mechanism to use. Example values include:
+ none | No authentication. |
localhost | Accept connections coming from localhost. On Linux, this means connections from localhost that are also from the same user as the user running the server. |
userpass:alice:secret | HTTP basic authentication. Username "alice", password "secret". Only recommended if using HTTPS. |
userpass:alice:secret:+localhost | Same as above, but also accept localhost auth |
userpass:alice:secret:vivify=othersecret | Alice has password "secret", but her Android phone can use password "othersecret" to do a minimal set of operations (upload new things, but not access anything)r |
baseURL
: Optional. If non-empty, this is the root of your URL prefix for your Camlistore server. Useful for when running behind a reverse proxy. Should not end in a slash. e.g. https://yourserver.example.com
blobPath
: local disk path to store blobs. May be empty if some other storage option is specified.https
: if "true", HTTPS is usedidentity
: your GPG fingerprint. A keypair is created for new users on start, but this may be changed if you know what you're doing.identitySecretRing
: your GnuPG secret keyring file. A new keyring is created on start for new users, but may be changed if you know what you're doing./li>
+listen
: The port (like "80" or ":80") or IP & port (like "10.0.0.2:8080") to listen for HTTP(s) connections on.s3
: Either empty (to not use Amazon S3 for storage), or of form "key:secret:bucket" (with colons, but no quotes).
+shareHandler
: if "true", the server's sharing functionality is enabled, letting your friends have access to any content you've specifically shared.