Blob Blame History Raw
# /etc/sysconfig/reg-server
#
# This file is used to configure various aspects of the reg-server systemd
# service unit
#
#   https://github.com/jessfraz/reg/tree/master/server
#
#

# Uncomment to enable debugging
REG_DEBUG="--debug"

# Directory on the local system containing template and static web content
# (JS, CSS themes, etc)
REG_WEBDIR="/var/lib/reg-server/"

# Remote Registry to index and display an web UI for
REG_REGISTRY="--registry registry.fedoraproject.org"

# Port to listen on with the built-in Golang mux
# (https://github.com/gorilla/mux) service (Default: 8080)
#REG_PORT="--port 8080"

# Username for the remote registry that you're attempting to index
#REG_USERNAME="--username USERNAME"

# Password for the remote registry that you're attempting to index
#REG_PASSWORD="--password PASSWORD"

# Path to SSL Cert for cert-based access to remote registry
#REG_CERTPATH="--cert PATH_TO_CERT"

# Path to SSL Key for cert-based access to remote regitry
#REG_KEYPATH="--key PATH_TO_KEY"

# Interval - how often to re-index remote registry and write out static content
# (Default is 5m)
#REG_INTERVAL="--interval 5m"

# Url to Clair (https://github.com/coreos/clair) instance to provide security
# information about containers.
#REG_CLAIRURL="--clair CLAIR_URL"