-
Notifications
You must be signed in to change notification settings - Fork 14
/
sftpcloudfs.conf.example
106 lines (73 loc) · 2.53 KB
/
sftpcloudfs.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
# sftpcloudfs example configuration file
#
# Defaults are shown in the comments.
# Configuration tokens don't require quotes.
#
[sftpcloudfs]
# Authentication URL (eg Memstore, RackSpace Cloud Files, OpenStack)
# auth-url = (empty)
# Allow to access servers without checking SSL certs
# insecure = no
# Host RSA key used by the server.
# host-key-file = (empty)
# Address to bind.
# bind-address = 127.0.0.1
# Port to bind.
# port = 8022
# Server ident to use when sending the SSH banner to the client.
# server-ident = sftpcloudfs_VER
# SCP support.
# scp-support = yes
# Memcache server(s) for external cache (eg 127.0.0.1:11211)
# Can be a comma-separated list.
# memcache = (empty)
# Maximum number of workers.
# max-children = 20
# Authentication grace time in seconds.
# auth-timeout = 60
# Negotiation time limit in seconds, 0 to disable.
# negotiation-timeout = 0
# Keep alive packets interval in seconds, 0 to disable.
# keepalive = 0
# Comma-separated list of ciphers supported by paramiko,
# otherwise defaults are used (eg aes128-ctr,aes256-ctr)
# ciphers = (empty)
# Comma-separated list of digests supported by paramilo,
# otherwise defaults are used (eg hmac-sha2-256, hmac-sha1)
# digests = (empty)
# Large file support.
# Specify a size in MB to split large files.
# split-large-files = (empty)
# Hide .part directory from large files
# hide-part-dir = no
# Log file location.
# log-file = (empty)
# Enable logging to system logger (daemon facility).
# syslog = no
# Show detailed information on logging.
# verbose = no
# Full path to the pid file location.
# pid-file = (empty)
# UID or USER to drop privileges to when in daemon mode.
# uid = (empty)
# GID or GROUP to drop privileges to when in daemon mode.
# gid = (empty)
# Use OpenStack Identity Service (Keystone), requires keystoneclient.
# keystone-auth = no
# Identity API version to be used with Keystone auth..
# keystone-auth-version = 2.0
# Region name to be used with Keystone auth (optional)
# keystone-region-name = (empty)
# Tenant separator to be used with Keystone auth (eg. TENANT.USERNAME)
# keystone-tenant-separator = .
# Domain separator to be used with Keystone auth v3 only
# (eg. PROJECT_NAME@PROJECT_DOMAIN_NAME.USERNAME@USER_DOMAIN_NAME)
# keystone-domain-separator = @
# Service type to be used with Keystone auth.
# keystone-service-type = object-store
# Endpoint type to be used with Keystone auth.
# keystone-endpoint-type = publicURL
# Swift storage policy to be used (optional)
# Access to other containers will be denied
# storage-policy = (empty)
# EOF