Apache is the foundation. Apache http server is the product.

Also, start instructions for RH platforms where it's called
httpd rather than apache2.

Change-Id: Icf1a66541fb2e6740ac36758955c112c644a009d
This commit is contained in:
Rich Bowen 2013-10-04 10:36:14 -04:00
parent f1be543ede
commit 441d976b77
3 changed files with 16 additions and 10 deletions

View File

@ -13,15 +13,15 @@
</listitem> </listitem>
<listitem> <listitem>
<para>Install the OpenStack Dashboard framework, including <para>Install the OpenStack Dashboard framework, including
Apache and related modules.</para> Apache http server and related modules.</para>
</listitem> </listitem>
<listitem> <listitem>
<para>Configure the dashboard.</para> <para>Configure the dashboard.</para>
<para>Then, restart and run the Apache server.</para> <para>Then, restart and run the Apache http server.</para>
</listitem> </listitem>
<listitem> <listitem>
<para>Verify your installation by going to the URL of the <para>Verify your installation by going to the URL of the
Apache server you configured.</para> Apache http server you configured.</para>
</listitem> </listitem>
</orderedlist> </orderedlist>
<simplesect> <simplesect>

View File

@ -25,9 +25,12 @@
Configuration</link>.</para> Configuration</link>.</para>
</step> </step>
<step> <step>
<para>Restart Apache and memcached:</para> <para>Restart Apache http server. For Ubuntu/Debian/SUSE:</para>
<screen><prompt>#</prompt> <userinput>service apache2 restart</userinput> <screen><prompt>#</prompt> <userinput>service apache2 restart</userinput></screen>
<prompt>#</prompt> <userinput>service memcached 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> </step>
</procedure> </procedure>
</section> </section>

View File

@ -76,16 +76,19 @@ Order allow,deny
Allow from all Allow from all
&lt;/Directory&gt; &lt;/Directory&gt;
&lt;/VirtualHost&gt;</programlisting> &lt;/VirtualHost&gt;</programlisting>
<para>In this configuration, Apache listens on the <para>In this configuration, Apache http server listens on the
port 443 and redirects all the hits to the HTTPS port 443 and redirects all the hits to the HTTPS
protocol for all the non-secured requests. The secured protocol for all the non-secured requests. The secured
section defines the private key, public key, and section defines the private key, public key, and
certificate to use.</para> certificate to use.</para>
</step> </step>
<step> <step>
<para>Restart Apache and memcached:</para> <para>Restart Apache http server. For Debian/Ubuntu/SUSE:</para>
<screen><prompt>#</prompt> <userinput>service apache2 restart</userinput> <screen><prompt>#</prompt> <userinput>service apache2 restart</userinput></screen>
<prompt>#</prompt> <userinput>service memcached 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>
<para>If you try to access the dashboard through HTTP, <para>If you try to access the dashboard through HTTP,
the browser redirects you to the HTTPS page.</para> the browser redirects you to the HTTPS page.</para>
</step> </step>