b2235bf3fb
Execluded all XML files in the directory doc/common/tables because they are autogenerated. The XML root element of Docbook XML files should match the following format: <ELEMENT xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:id="THE_XML_ID_OF_THE_ELEMENT"> Change-Id: If12091be81ec8b2e6e53bfcb4c3a883a65e24736
39 lines
2.0 KiB
XML
39 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<section xmlns="http://docbook.org/ns/docbook"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
version="5.0"
|
|
xml:id="configure-dashboard-http">
|
|
<title>Configure the dashboard for HTTP</title>
|
|
<?dbhtml stop-chunking?>
|
|
<para>You can configure the dashboard for a simple HTTP deployment. The standard installation
|
|
uses a non-encrypted HTTP channel.</para>
|
|
<procedure xml:id="dashboard-config-http">
|
|
<step>
|
|
<para>Specify the host for your OpenStack Identity
|
|
Service endpoint in the
|
|
<filename>/etc/openstack-dashboard/local_settings.py</filename>
|
|
file with the <literal>OPENSTACK_HOST</literal>
|
|
setting.</para>
|
|
<para>The following example shows this setting:</para>
|
|
<programlisting language="python"><?db-font-size 65%?><xi:include parse="text" href="samples/local_settings.py"/></programlisting>
|
|
<para>The service catalog configuration in the
|
|
Identity Service determines whether a service appears
|
|
in the dashboard. For the full listing, see
|
|
<link
|
|
xlink:href="http://docs.openstack.org/developer/horizon/topics/settings.html"
|
|
>Horizon Settings and
|
|
Configuration</link>.</para>
|
|
</step>
|
|
<step>
|
|
<para>Restart Apache http server. For Ubuntu/Debian/SUSE:</para>
|
|
<screen><prompt>#</prompt> <userinput>service apache2 restart</userinput></screen>
|
|
<para>or for Fedora/RHEL/CentOS:</para>
|
|
<screen><prompt>#</prompt> <userinput>service httpd restart</userinput></screen>
|
|
<para>Next, restart memcached:</para>
|
|
<screen><prompt>#</prompt> <userinput>service memcached restart</userinput></screen>
|
|
</step>
|
|
</procedure>
|
|
</section>
|
|
|