From 31e8986e3539de9b5f42d90362b735e13eac453a Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 3 Jan 2017 14:03:50 -0500 Subject: [PATCH] Minor docs tweaks --- docs/installation/netbox.md | 2 +- docs/installation/postgresql.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation/netbox.md b/docs/installation/netbox.md index 5b673e845..fa476b865 100644 --- a/docs/installation/netbox.md +++ b/docs/installation/netbox.md @@ -195,7 +195,7 @@ Starting development server at http://0.0.0.0:8000/ Quit the server with CONTROL-C. ``` -Now if we navigate to the name or IP of the server (as defined in `ALLOWED_HOSTS`) we should be greeted with the NetBox home page. Note that this built-in web service is for development and testing purposes only. It is not suited for production use. +Now if we navigate to the name or IP of the server (as defined in `ALLOWED_HOSTS`) we should be greeted with the NetBox home page. Note that this built-in web service is for development and testing purposes only. **It is not suited for production use.** !!! warning If the test service does not run, or you cannot reach the NetBox home page, something has gone wrong. Do not proceed with the rest of this guide until the installation has been corrected. diff --git a/docs/installation/postgresql.md b/docs/installation/postgresql.md index e1d9a49ea..39a8f05cb 100644 --- a/docs/installation/postgresql.md +++ b/docs/installation/postgresql.md @@ -1,4 +1,4 @@ -NetBox requires a PostgreSQL database to store data. MySQL is not supported, as NetBox leverage's PostgreSQL's built-in [network address types](https://www.postgresql.org/docs/9.1/static/datatype-net-types.html). +NetBox requires a PostgreSQL database to store data. (Please note that MySQL is not supported, as NetBox leverages PostgreSQL's built-in [network address types](https://www.postgresql.org/docs/9.1/static/datatype-net-types.html).) # Installation @@ -15,7 +15,7 @@ NetBox requires a PostgreSQL database to store data. MySQL is not supported, as # postgresql-setup initdb ``` -If using CentOS, modify the PostgreSQL configuration to accept password-based authentication by replacing `ident` with `md5` for all host entries within `/var/lib/pgsql/data/pg_hba.conf`. For example: +CentOS users should modify the PostgreSQL configuration to accept password-based authentication by replacing `ident` with `md5` for all host entries within `/var/lib/pgsql/data/pg_hba.conf`. For example: ```no-highlight host all all 127.0.0.1/32 md5