diff --git a/doc/common/section_about-dashboard.xml b/doc/common/section_about-dashboard.xml index e7baa9b27e..05f1cdd9f7 100644 --- a/doc/common/section_about-dashboard.xml +++ b/doc/common/section_about-dashboard.xml @@ -13,15 +13,15 @@ Install the OpenStack Dashboard framework, including - Apache and related modules. + Apache http server and related modules. Configure the dashboard. - Then, restart and run the Apache server. + Then, restart and run the Apache http server. Verify your installation by going to the URL of the - Apache server you configured. + Apache http server you configured. diff --git a/doc/common/section_dashboard-configure-http.xml b/doc/common/section_dashboard-configure-http.xml index 17dbb07558..0493616595 100644 --- a/doc/common/section_dashboard-configure-http.xml +++ b/doc/common/section_dashboard-configure-http.xml @@ -25,9 +25,12 @@ Configuration. - Restart Apache and memcached: - # service apache2 restart -# service memcached restart + Restart Apache http server. For Ubuntu/Debian/SUSE: + # service apache2 restart + or for Fedora/RHEL/CentOS: + # service httpd restart + Next, restart memcached: + # service memcached restart diff --git a/doc/common/section_dashboard-configure-https.xml b/doc/common/section_dashboard-configure-https.xml index 8e59546c8a..d0400ad520 100644 --- a/doc/common/section_dashboard-configure-https.xml +++ b/doc/common/section_dashboard-configure-https.xml @@ -76,16 +76,19 @@ Order allow,deny Allow from all </Directory> </VirtualHost> - In this configuration, Apache listens on the + In this configuration, Apache http server listens on the port 443 and redirects all the hits to the HTTPS protocol for all the non-secured requests. The secured section defines the private key, public key, and certificate to use. - Restart Apache and memcached: - # service apache2 restart -# service memcached restart + Restart Apache http server. For Debian/Ubuntu/SUSE: + # service apache2 restart + Or for Fedora/RHEL/CentOS: + # service httpd restart + Next, restart memcached: + # service memcached restart If you try to access the dashboard through HTTP, the browser redirects you to the HTTPS page.