### Port on which the HTTP Replicator proxy should listen on.
PORT="8080"

### Whitespace-separated list of IP addresses of clients or client networks
### that are allowed to connect to the proxy.
ALLOW_IP="127.0.0.1"

### Whitespace-separated list of HTTP mirrors, i.e. hosts serving identical
### content. Useful for caching packages from different mirrors to the same
### directory.
MIRRORS=""

### Enable "static mode": files are known to never change so files that are
### present are served from cache directly without contacting the server
ENABLE_STATIC_MODE=""

### Enable "flat mode" for the cache: all files are saved in a single
### (cache) directory.
ENABLE_FLAT_CACHE=""

### Forward requests to an external proxy server, specified as "host:port"
### or "username:password@host:port" if the server requires authentication.
### Leave empty to disable external proxy server support.
FORWARD_TO_PROXY=""

### User to use to run http-replicator
USER="nobody"

### Cachedir location
CACHE_DIR="/var/cache/http-replicator"

### Additional options for http-replicator daemon
OPTIONS=""
