~ubuntu-branches/ubuntu/quantal/swift/quantal-updates

« back to all changes in this revision

Viewing changes to etc/proxy-server.conf-sample

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Thierry Carrez (ttx)
  • Date: 2012-01-09 11:26:25 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20120109112625-d7a1056nzxt3kwl4
Tags: 1.4.6~20120112.1660-0ubuntu1
[Chuck Short]
* New upstream release.
* Merged changes from upstream packaging, thanks to Thierry Carrez.
* debian/rules:
  + Remove egg-info on clean.

[Thierry Carrez (ttx)]
* Added usr/bin/swift-recon[-cron] to swift package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
# This is a comma separated list of hosts allowed to send X-Container-Sync-Key
70
70
# requests.
71
71
# allowed_sync_hosts = 127.0.0.1
 
72
# This allows middleware higher in the WSGI pipeline to override auth
 
73
# processing, useful for middleware such as tempurl and formpost. If you know
 
74
# you're not going to use such middleware and you want a bit of extra security,
 
75
# you can set this to false.
 
76
# allow_overrides = true
72
77
# Lastly, you need to list all the accounts/users you want here. The format is:
73
78
#   user_<account>_<user> = <key> [group] [group] [...] [storage_url]
74
79
# There are special groups of:
104
109
# set log_facility = LOG_LOCAL0
105
110
# set log_level = INFO
106
111
# set log_headers = False
107
 
# Default for memcache_servers is below, but you can specify multiple servers
108
 
# with the format: 10.1.2.3:11211,10.1.2.4:11211
 
112
# Default for memcache_servers is to try to read the property from
 
113
# memcache.conf (see memcache.conf-sample) or lacking that file, it will
 
114
# default to the value below. You can specify multiple servers separated with
 
115
# commas, as in: 10.1.2.3:11211,10.1.2.4:11211
109
116
# memcache_servers = 127.0.0.1:11211
110
117
 
111
118
[filter:ratelimit]
183
190
# set access_log_facility = LOG_LOCAL0
184
191
# set access_log_level = INFO
185
192
# set log_headers = False
 
193
 
 
194
# Note: Put tempurl just before your auth filter(s) in the pipeline
 
195
[filter:tempurl]
 
196
use = egg:swift#tempurl
 
197
#
 
198
# The headers to remove from incoming requests. Simply a whitespace delimited
 
199
# list of header names and names can optionally end with '*' to indicate a
 
200
# prefix match. incoming_allow_headers is a list of exceptions to these
 
201
# removals.
 
202
# incoming_remove_headers = x-timestamp
 
203
#
 
204
# The headers allowed as exceptions to incoming_remove_headers. Simply a
 
205
# whitespace delimited list of header names and names can optionally end with
 
206
# '*' to indicate a prefix match.
 
207
# incoming_allow_headers =
 
208
#
 
209
# The headers to remove from outgoing responses. Simply a whitespace delimited
 
210
# list of header names and names can optionally end with '*' to indicate a
 
211
# prefix match. outgoing_allow_headers is a list of exceptions to these
 
212
# removals.
 
213
# outgoing_remove_headers = x-object-meta-*
 
214
#
 
215
# The headers allowed as exceptions to outgoing_remove_headers. Simply a
 
216
# whitespace delimited list of header names and names can optionally end with
 
217
# '*' to indicate a prefix match.
 
218
# outgoing_allow_headers = x-object-meta-public-*
 
219
 
 
220
# Note: Put formpost just before your auth filter(s) in the pipeline
 
221
[filter:formpost]
 
222
use = egg:swift#formpost