68bc487786
Bunch of glance source code files are marked as executable which is not appropriate, this patch just 'chmod -x' to all of them. Closes-Bug: #1468564 Change-Id: Iaa6ba2a4ec31994f528a191e480db202a96f0c67
117 lines
3.7 KiB
Plaintext
117 lines
3.7 KiB
Plaintext
[DEFAULT]
|
|
# Show more verbose log output (sets INFO log level output)
|
|
#verbose = False
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = True
|
|
|
|
# Address to bind the GRAFFITI server
|
|
bind_host = 0.0.0.0
|
|
|
|
# Port to bind the server to
|
|
bind_port = 9393
|
|
|
|
# Log to this file. Make sure you do not set the same log file for both the API
|
|
# and registry servers!
|
|
#
|
|
# If `log_file` is omitted and `use_syslog` is false, then log messages are
|
|
# sent to stdout as a fallback.
|
|
log_file = /var/log/glance/search.log
|
|
|
|
# Backlog requests when creating socket
|
|
backlog = 4096
|
|
|
|
# TCP_KEEPIDLE value in seconds when creating socket.
|
|
# Not supported on OS X.
|
|
#tcp_keepidle = 600
|
|
|
|
# Property Protections config file
|
|
# This file contains the rules for property protections and the roles/policies
|
|
# associated with it.
|
|
# If this config value is not specified, by default, property protections
|
|
# won't be enforced.
|
|
# If a value is specified and the file is not found, then the glance-api
|
|
# service will not start.
|
|
#property_protection_file =
|
|
|
|
# Specify whether 'roles' or 'policies' are used in the
|
|
# property_protection_file.
|
|
# The default value for property_protection_rule_format is 'roles'.
|
|
#property_protection_rule_format = roles
|
|
|
|
# http_keepalive option. If False, server will return the header
|
|
# "Connection: close", If True, server will return "Connection: Keep-Alive"
|
|
# in its responses. In order to close the client socket connection
|
|
# explicitly after the response is sent and read successfully by the client,
|
|
# you simply have to set this option to False when you create a wsgi server.
|
|
#http_keepalive = True
|
|
|
|
# ================= Syslog Options ============================
|
|
|
|
# Send logs to syslog (/dev/log) instead of to file specified
|
|
# by `log_file`
|
|
#use_syslog = False
|
|
|
|
# Facility to use. If unset defaults to LOG_USER.
|
|
#syslog_log_facility = LOG_LOCAL0
|
|
|
|
# ================= SSL Options ===============================
|
|
|
|
# Certificate file to use when starting API server securely
|
|
#cert_file = /path/to/certfile
|
|
|
|
# Private key file to use when starting API server securely
|
|
#key_file = /path/to/keyfile
|
|
|
|
# CA certificate file to use to verify connecting clients
|
|
#ca_file = /path/to/cafile
|
|
|
|
# =============== Policy Options ==================================
|
|
|
|
# The JSON file that defines policies.
|
|
policy_file = search-policy.json
|
|
|
|
# Default rule. Enforced when a requested rule is not found.
|
|
#policy_default_rule = default
|
|
|
|
# Directories where policy configuration files are stored.
|
|
# They can be relative to any directory in the search path
|
|
# defined by the config_dir option, or absolute paths.
|
|
# The file defined by policy_file must exist for these
|
|
# directories to be searched.
|
|
#policy_dirs = policy.d
|
|
|
|
[paste_deploy]
|
|
# Name of the paste configuration file that defines the available pipelines
|
|
# config_file = glance-search-paste.ini
|
|
|
|
# Partial name of a pipeline in your paste configuration file with the
|
|
# service name removed. For example, if your paste section name is
|
|
# [pipeline:glance-registry-keystone], you would configure the flavor below
|
|
# as 'keystone'.
|
|
#flavor=
|
|
#
|
|
|
|
[database]
|
|
# The SQLAlchemy connection string used to connect to the
|
|
# database (string value)
|
|
# Deprecated group/name - [DEFAULT]/sql_connection
|
|
# Deprecated group/name - [DATABASE]/sql_connection
|
|
# Deprecated group/name - [sql]/connection
|
|
#connection = <None>
|
|
|
|
[keystone_authtoken]
|
|
identity_uri = http://127.0.0.1:35357
|
|
admin_tenant_name = %SERVICE_TENANT_NAME%
|
|
admin_user = %SERVICE_USER%
|
|
admin_password = %SERVICE_PASSWORD%
|
|
revocation_cache_time = 10
|
|
|
|
# =============== ElasticSearch Options =======================
|
|
|
|
[elasticsearch]
|
|
# List of nodes where Elasticsearch instances are running. A single node
|
|
# should be defined as an IP address and port number.
|
|
# The default is ['127.0.0.1:9200']
|
|
#hosts = ['127.0.0.1:9200']
|