Update the documentation layout and content

Update the documentation layout and content to reflect the admin, installation
and config sections.

Change-Id: Ia4ce25cf18d3cff64eef7eec01c8abe079f1b72a
Closes-Bug: #1706157
This commit is contained in:
Christophe Sauthier
2017-07-25 22:49:03 +02:00
committed by Gauvain Pocentek
parent 2dc80310ba
commit 552372398a
15 changed files with 256 additions and 302 deletions

View File

@@ -40,9 +40,7 @@ class Service(wtypes.Base):
class ServiceCollection(wtypes.Base): class ServiceCollection(wtypes.Base):
"""Type describing a list of services. """Type describing a list of services."""
"""
services = [Service] services = [Service]
"""List of services.""" """List of services."""

View File

@@ -0,0 +1,10 @@
====================
Administration Guide
====================
.. toctree::
:glob:
rating/introduction.rst
rating/hashmap.rst
rating/pyscripts.rst

10
doc/source/api.rst Normal file
View File

@@ -0,0 +1,10 @@
#############
API Reference
#############
.. toctree::
:glob:
webapi/root
webapi/v1
webapi/rating/*

View File

@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (c) 2010 OpenStack Foundation.
#
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
# You may obtain a copy of the License at # You may obtain a copy of the License at
@@ -12,58 +14,83 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
#
# This file is execfile()'d with the current directory set to its containing
# dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import os import os
import subprocess
import sys import sys
import warnings
import openstackdocstheme
sys.path.insert(0, os.path.abspath('../..')) # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path = [
os.path.abspath('../..'),
os.path.abspath('../../bin')
] + sys.path
# -- General configuration ---------------------------------------------------- # -- General configuration ---------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be # Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
# ones. extensions = ['sphinx.ext.coverage',
extensions = [ 'sphinx.ext.ifconfig',
'sphinx.ext.autodoc',
'sphinx.ext.graphviz', 'sphinx.ext.graphviz',
'sphinx.ext.intersphinx', 'stevedore.sphinxext',
'oslo_config.sphinxext',
'sphinx.ext.autodoc',
'sphinx.ext.viewcode', 'sphinx.ext.viewcode',
'oslo_config.sphinxconfiggen',
'sphinx.ext.mathjax', 'sphinx.ext.mathjax',
'wsmeext.sphinxext', 'wsmeext.sphinxext',
'sphinxcontrib.pecanwsme.rest', 'sphinxcontrib.pecanwsme.rest',
'sphinxcontrib.httpdomain', 'sphinxcontrib.httpdomain',
'openstackdocstheme' 'openstackdocstheme',
] ]
wsme_protocols = ['restjson', 'restxml'] # openstackdocstheme options
repository_name = 'openstack/cloudkitty'
bug_project = 'cloudkitty'
bug_tag = ''
html_last_updated_fmt = '%Y-%m-%d %H:%M'
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] # templates_path = []
# The suffix of source filenames. # The suffix of source filenames.
source_suffix = '.rst' source_suffix = '.rst'
# The encoding of source files. # The encoding of source files.
#source_encoding = 'utf-8-sig' #source_encoding = 'utf-8'
# The master toctree document. # The master toctree document.
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'cloudkitty' project = u'Cloudkitty'
copyright = u'2014, Objectif Libre' copyright = u'2014-present, OpenStack Foundation.'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.1' from cloudkitty.version import version_info as cloudkitty_version
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.1' release = cloudkitty_version.version_string_with_vcs()
# The short X.Y version.
version = cloudkitty_version.canonical_version_string()
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@@ -75,12 +102,15 @@ release = '0.1'
# Else, today_fmt is used as the format for a strftime call. # Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y' #today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and # List of documents that shouldn't be included in the build.
# directories to ignore when looking for source files. #unused_docs = []
# List of directories, relative to source directory, that shouldn't be searched
# for source files.
#exclude_trees = ['api']
exclude_patterns = [] exclude_patterns = []
# The reST default role (used for this markup: `text`) to use for all # The reST default role (for this markup: `text`) to use for all documents.
# documents.
#default_role = None #default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text. # If true, '()' will be appended to :func: etc. cross-reference text.
@@ -92,7 +122,7 @@ add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the # If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default. # output. They are ignored by default.
#show_authors = False show_authors = True
# The name of the Pygments (syntax highlighting) style to use. # The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx' pygments_style = 'sphinx'
@@ -100,14 +130,22 @@ pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting. # A list of ignored prefixes for module index sorting.
modindex_common_prefix = ['cloudkitty.'] modindex_common_prefix = ['cloudkitty.']
# If true, keep warnings as "system message" paragraphs in the built documents. # -- Options for man page output --------------------------------------------
#keep_warnings = False
# Grouping the document tree for man pages.
# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual'
# -- Options for HTML output -------------------------------------------------- man_pages = [
('index', 'cloudkitty', u'cloudkitty Documentation',
[u'Objectif Libre'], 1)
]
# The theme to use for HTML and HTML Help pages. See the documentation for # -- Options for HTML output -------------------------------------------------
# a list of builtin themes.
# The theme to use for HTML and HTML Help pages. Major themes that come with
# Sphinx are currently 'default' and 'sphinxdoc'.
# html_theme_path = ["."]
# html_theme = '_theme'
html_theme = 'openstackdocs' html_theme = 'openstackdocs'
# Theme options are theme-specific and customize the look and feel of a theme # Theme options are theme-specific and customize the look and feel of a theme
@@ -116,7 +154,8 @@ html_theme = 'openstackdocs'
#html_theme_options = {} #html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory. # Add any paths that contain custom themes here, relative to this directory.
# html_theme_path = ["."] #html_theme_path = ['_theme']
html_theme_path = [openstackdocstheme.get_html_theme_path()]
# The name for this set of Sphinx documents. If None, it defaults to # The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation". # "<project> v<release> documentation".
@@ -137,17 +176,19 @@ html_theme = 'openstackdocs'
# Add any paths that contain custom static files (such as style sheets) here, # Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files, # relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css". # so a file named "default.css" will overwrite the builtin "default.css".
#html_static_path = ['_static'] html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
# directly to the root of the documentation.
#html_extra_path = []
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format. # using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y' #html_last_updated_fmt = '%b %d, %Y'
html_last_updated_fmt = '%Y-%m-%d %H:%M' git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local",
"-n1"]
try:
html_last_updated_fmt = subprocess.check_output(git_cmd).decode('utf-8')
except Exception:
warnings.warn('Cannot get last updated time from git repository. '
'Not setting "html_last_updated_fmt".')
# If true, SmartyPants will be used to convert quotes and dashes to # If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities. # typographically correct entities.
@@ -161,10 +202,10 @@ html_last_updated_fmt = '%Y-%m-%d %H:%M'
#html_additional_pages = {} #html_additional_pages = {}
# If false, no module index is generated. # If false, no module index is generated.
#html_domain_indices = True html_use_modindex = True
# If false, no index is generated. # If false, no index is generated.
#html_use_index = True html_use_index = True
# If true, the index is split into individual pages for each letter. # If true, the index is split into individual pages for each letter.
#html_split_index = False #html_split_index = False
@@ -172,43 +213,32 @@ html_last_updated_fmt = '%Y-%m-%d %H:%M'
# If true, links to the reST sources are added to the pages. # If true, links to the reST sources are added to the pages.
#html_show_sourcelink = True #html_show_sourcelink = True
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
#html_show_sphinx = True
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will # If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the # contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served. # base URL from which the finished HTML is served.
#html_use_opensearch = '' #html_use_opensearch = ''
# This is the file name suffix for HTML files (e.g. ".xhtml"). # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None #html_file_suffix = ''
# Output file base name for HTML help builder. # Output file base name for HTML help builder.
htmlhelp_basename = 'cloudkittydoc' htmlhelp_basename = 'cloudkittydoc'
# -- Options for LaTeX output ------------------------------------------------- # -- Options for LaTeX output ------------------------------------------------
latex_elements = { # The paper size ('letter' or 'a4').
# The paper size ('letterpaper' or 'a4paper'). #latex_paper_size = 'letter'
#'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt'). # The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt', #latex_font_size = '10pt'
# Additional stuff for the LaTeX preamble.
#'preamble': '',
}
# Grouping the document tree into LaTeX files. List of tuples # Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, # (source start file, target name, title, author,
# author, documentclass [howto, manual, or own class]). # documentclass [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'cloudkitty.tex', u'cloudkitty Documentation', ('index', 'Cloudkitty.tex', u'Cloudkitty Documentation',
u'Objectif Libre', 'manual'), u'Cloudkitty Team', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@@ -219,56 +249,11 @@ latex_documents = [
# not chapters. # not chapters.
#latex_use_parts = False #latex_use_parts = False
# If true, show page references after internal links. # Additional stuff for the LaTeX preamble.
#latex_show_pagerefs = False #latex_preamble = ''
# If true, show URL addresses after external links.
#latex_show_urls = False
# Documents to append as an appendix to all manuals. # Documents to append as an appendix to all manuals.
#latex_appendices = [] #latex_appendices = []
# If false, no module index is generated. # If false, no module index is generated.
#latex_domain_indices = True #latex_use_modindex = True
# -- Options for manual page output -------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'cloudkitty', u'cloudkitty Documentation',
[u'Objectif Libre'], 1)
]
# If true, show URL addresses after external links.
#man_show_urls = False
# -- Options for Texinfo output -----------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'cloudkitty', u'cloudkitty Documentation',
u'Objectif Libre', 'cloudkitty', 'One line description of project.',
'Miscellaneous'),
]
# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
# If false, no module index is generated.
#texinfo_domain_indices = True
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
# -- Options for openstackdocstheme -------------------------------------------
repository_name = 'openstack/cloudkitty'
bug_project = 'cloudkitty'
bug_tag = ''

View File

@@ -1,117 +1,8 @@
######################################### ###################
Cloudkitty installation and configuration Configuration Guide
######################################### ###################
Many method can be followed to install cloudkitty. Configure Cloudkitty
Install from source
===================
Install the services
--------------------
Retrieve and install cloudkitty::
git clone https://git.openstack.org/openstack/cloudkitty.git
cd cloudkitty
python setup.py install
This procedure installs the ``cloudkitty`` python library and the
following executables:
* ``cloudkitty-api``: API service
* ``cloudkitty-processor``: Processing service (collecting and rating)
* ``cloudkitty-dbsync``: Tool to create and upgrade the database schema
* ``cloudkitty-storage-init``: Tool to initiate the storage backend
* ``cloudkitty-writer``: Reporting tool
Install sample configuration files::
mkdir /etc/cloudkitty
tox -e genconfig
cp etc/cloudkitty/cloudkitty.conf.sample /etc/cloudkitty/cloudkitty.conf
cp etc/cloudkitty/policy.json /etc/cloudkitty
cp etc/cloudkitty/api_paste.ini /etc/cloudkitty
Create the log directory::
mkdir /var/log/cloudkitty/
Install the client
------------------
Retrieve and install cloudkitty client::
git clone https://git.openstack.org/openstack/python-cloudkittyclient.git
cd python-cloudkittyclient
python setup.py install
Install the dashboard module
----------------------------
#. Retrieve and install cloudkitty's dashboard::
git clone https://git.openstack.org/openstack/cloudkitty-dashboard.git
cd cloudkitty-dashboard
python setup.py install
#. Find where the python packages are installed::
PY_PACKAGES_PATH=`pip --version | cut -d' ' -f4`
#. Add the enabled file to the horizon settings or installation.
Depending on your setup, you might need to add it to ``/usr/share`` or
directly in the horizon python package::
# If horizon is installed by packages:
ln -sf $PY_PACKAGES_PATH/cloudkittydashboard/enabled/_[0-9]*.py \
/usr/share/openstack-dashboard/openstack_dashboard/enabled/
# Directly from sources:
ln -sf $PY_PACKAGES_PATH/cloudkittydashboard/enabled/_[0-9]*.py \
$PY_PACKAGES_PATH/openstack_dashboard/enabled/
#. Restart the web server hosting Horizon.
Install from packages
=====================
For RHEL/CentOS 7
-----------------
Packages for RHEL/CentOS 7 are available starting from the Mitaka release.
#. Install the RDO repositories for your release::
yum install centos-release-openstack-RELEASE # RELEASE can be mitaka, newton or ocata
#. Install the packages::
yum install openstack-cloudkitty-api openstack-cloudkitty-processor openstack-cloudkitty-ui
For Ubuntu 16.04
----------------
Packages for Ubuntu 16.04 are available starting from the Newton release.
#. Enable the OpenStack repository for the Newton or Ocata release::
apt install software-properties-common
add-apt-repository ppa:objectif-libre/cloudkitty # Newton
add-apt-repository ppa:objectif-libre/cloudkitty-ocata # Ocata
#. Upgrade the packages on your host::
apt update && apt dist-upgrade
#. Install the packages::
apt-get install cloudkitty-api cloudkitty-processor cloudkitty-dashboard
Configure cloudkitty
==================== ====================
Edit :file:`/etc/cloudkitty/cloudkitty.conf` to configure cloudkitty. Edit :file:`/etc/cloudkitty/cloudkitty.conf` to configure cloudkitty.
@@ -261,7 +152,7 @@ documentation), and Gnocchi.
auth_section = ks_auth auth_section = ks_auth
Setup the database and storage backend Setup the database and storage backend
====================================== --------------------------------------
MySQL/MariaDB is the recommended database engine. To setup the database, use MySQL/MariaDB is the recommended database engine. To setup the database, use
the ``mysql`` client:: the ``mysql`` client::
@@ -284,8 +175,8 @@ Init the storage backend::
cloudkitty-storage-init cloudkitty-storage-init
Setup Keystone Integration with Keystone
============== -------------------------
cloudkitty uses Keystone for authentication, and provides a ``rating`` service. cloudkitty uses Keystone for authentication, and provides a ``rating`` service.
@@ -345,7 +236,7 @@ Choose and start the API server
used to run the API server. For smaller or proof-of-concept used to run the API server. For smaller or proof-of-concept
installations this is a reasonable choice. For larger installations it installations this is a reasonable choice. For larger installations it
is strongly recommended to install the API server in a WSGI host is strongly recommended to install the API server in a WSGI host
such as mod_wsgi (see :doc:`mod_wsgi`). Doing so will provide better such as mod_wsgi (see :ref:`mod_wsgi`). Doing so will provide better
performance and more options for making adjustments specific to the performance and more options for making adjustments specific to the
installation environment. installation environment.
@@ -353,4 +244,3 @@ Choose and start the API server
as:: as::
$ cloudkitty-api -p 8889 $ cloudkitty-api -p 8889

View File

@@ -3,69 +3,19 @@
You can adapt this file completely to your liking, but it should at least You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive. contain the root `toctree` directive.
================================================= ======================================
Welcome to CloudKitty's developer documentation! Welcome to CloudKitty's documentation!
================================================= ======================================
Introduction
============
CloudKitty is a Rating As A Service project aimed at translating metrics CloudKitty is a Rating As A Service project aimed at translating metrics
to prices. to prices.
Installation
============
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 2
install/index
configuration/index
admin/index
devstack devstack
installation
mod_wsgi
Architecture
============
.. toctree::
:maxdepth: 1
arch arch
api
API References
==============
.. toctree::
:maxdepth: 1
webapi/root
webapi/v1
Modules API
===========
.. toctree::
:maxdepth: 1
:glob:
webapi/rating/*
Rating Module Documentation
===========================
.. toctree::
:maxdepth: 1
rating/introduction.rst
rating/hashmap.rst
rating/pyscripts.rst
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

View File

@@ -0,0 +1,11 @@
==================
Installation Guide
==================
.. toctree::
:glob:
install-source
install-ubuntu
install-rdo
mod_wsgi

View File

@@ -0,0 +1,12 @@
Install from package (RDO For RHEL/CentOS 7)
============================================
Packages for RHEL/CentOS 7 are available starting from the Mitaka release.
#. Install the RDO repositories for your release::
yum install centos-release-openstack-RELEASE # RELEASE can be mitaka, newton or ocata
#. Install the packages::
yum install openstack-cloudkitty-api openstack-cloudkitty-processor openstack-cloudkitty-ui

View File

@@ -0,0 +1,68 @@
Install from source
===================
Install the services
--------------------
Retrieve and install cloudkitty::
git clone https://git.openstack.org/openstack/cloudkitty.git
cd cloudkitty
python setup.py install
This procedure installs the ``cloudkitty`` python library and the
following executables:
* ``cloudkitty-api``: API service
* ``cloudkitty-processor``: Processing service (collecting and rating)
* ``cloudkitty-dbsync``: Tool to create and upgrade the database schema
* ``cloudkitty-storage-init``: Tool to initiate the storage backend
* ``cloudkitty-writer``: Reporting tool
Install sample configuration files::
mkdir /etc/cloudkitty
tox -e genconfig
cp etc/cloudkitty/cloudkitty.conf.sample /etc/cloudkitty/cloudkitty.conf
cp etc/cloudkitty/policy.json /etc/cloudkitty
cp etc/cloudkitty/api_paste.ini /etc/cloudkitty
Create the log directory::
mkdir /var/log/cloudkitty/
Install the client
------------------
Retrieve and install cloudkitty client::
git clone https://git.openstack.org/openstack/python-cloudkittyclient.git
cd python-cloudkittyclient
python setup.py install
Install the dashboard module
----------------------------
#. Retrieve and install cloudkitty's dashboard::
git clone https://git.openstack.org/openstack/cloudkitty-dashboard.git
cd cloudkitty-dashboard
python setup.py install
#. Find where the python packages are installed::
PY_PACKAGES_PATH=`pip --version | cut -d' ' -f4`
#. Add the enabled file to the horizon settings or installation.
Depending on your setup, you might need to add it to ``/usr/share`` or
directly in the horizon python package::
# If horizon is installed by packages:
ln -sf $PY_PACKAGES_PATH/cloudkittydashboard/enabled/_[0-9]*.py \
/usr/share/openstack-dashboard/openstack_dashboard/enabled/
# Directly from sources:
ln -sf $PY_PACKAGES_PATH/cloudkittydashboard/enabled/_[0-9]*.py \
$PY_PACKAGES_PATH/openstack_dashboard/enabled/
#. Restart the web server hosting Horizon.

View File

@@ -0,0 +1,18 @@
Install from packages for Ubuntu (16.04)
========================================
Packages for Ubuntu 16.04 are available starting from the Newton release.
#. Enable the OpenStack repository for the Newton or Ocata release::
apt install software-properties-common
add-apt-repository ppa:objectif-libre/cloudkitty # Newton
add-apt-repository ppa:objectif-libre/cloudkitty-ocata # Ocata
#. Upgrade the packages on your host::
apt update && apt dist-upgrade
#. Install the packages::
apt-get install cloudkitty-api cloudkitty-processor cloudkitty-dashboard

View File

@@ -13,9 +13,11 @@
License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
under the License. under the License.
=================================== .. _mod_wsgi:
==================================
Installing the API behind mod_wsgi Installing the API behind mod_wsgi
=================================== ==================================
Cloudkitty comes with a few example files for configuring the API Cloudkitty comes with a few example files for configuring the API
service to run behind Apache with ``mod_wsgi``. service to run behind Apache with ``mod_wsgi``.
@@ -24,7 +26,7 @@ app.wsgi
======== ========
The file ``cloudkitty/api/app.wsgi`` sets up the V1 API WSGI The file ``cloudkitty/api/app.wsgi`` sets up the V1 API WSGI
application. The file needs to be copied to /var/www/cloudkitty/, application. The file needs to be copied to ``/var/www/cloudkitty/``,
and should not need to be modified. and should not need to be modified.
etc/apache2/cloudkitty etc/apache2/cloudkitty
@@ -33,7 +35,7 @@ etc/apache2/cloudkitty
The ``etc/apache2/cloudkitty`` file contains example settings that The ``etc/apache2/cloudkitty`` file contains example settings that
work with a copy of cloudkitty installed via devstack. work with a copy of cloudkitty installed via devstack.
.. literalinclude:: ../../etc/apache2/cloudkitty .. literalinclude:: ../../../etc/apache2/cloudkitty
1. On deb-based systems copy or symlink the file to 1. On deb-based systems copy or symlink the file to
``/etc/apache2/sites-available``. For rpm-based systems the file will go in ``/etc/apache2/sites-available``. For rpm-based systems the file will go in
@@ -45,9 +47,9 @@ work with a copy of cloudkitty installed via devstack.
3. Enable the cloudkitty site. On deb-based systems:: 3. Enable the cloudkitty site. On deb-based systems::
$ a2ensite cloudkitty # a2ensite cloudkitty
$ service apache2 reload # service apache2 reload
On rpm-based systems:: On rpm-based systems::
$ service httpd reload # service httpd reload