From 572fdb6199117092fded2a20e635c33b4cfd0fbe Mon Sep 17 00:00:00 2001 From: Bill Burke Date: Fri, 3 Jun 2016 09:56:47 -0400 Subject: [PATCH 1/3] fix --- topics/network/https.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/network/https.adoc b/topics/network/https.adoc index 0f70786fd6..ae50ffc1db 100755 --- a/topics/network/https.adoc +++ b/topics/network/https.adoc @@ -10,14 +10,14 @@ If you try to access {{book.project.name}} out of the box via a non-private IP a This default behavior is defined by the SSL/HTTPS mode of each {{book.project.name}} realm. This is discussed in more detail in the link:{{book.adminguide.link}}[{{book.adminguide.name}}], but let's give some context and a brief overview of these modes. -external:: +external requests:: {{book.project.name}} can run out of the box without SSL so long as you stick to private IP addresses like `localhost`, `127.0.0.1`, `10.0.x.x`, `192.168.x.x`, and `172..16.x.x`. If you try to access {{book.project.name}} from a non-private IP adress you will get an error. none:: {{book.project.name}} does not require SSL. This should really only be used in development when you are playing around with things. -all:: +all requests:: {{book.project.name}} requires SSL for all IP addresses. The SSL mode for each realm can be configured in the {{book.project.name}} admin console. From 02e0a8b362e97bdd8b6302f9b6a1376b1a268ada Mon Sep 17 00:00:00 2001 From: mposolda Date: Fri, 3 Jun 2016 20:32:19 +0200 Subject: [PATCH 2/3] Update .gitignore like in other guides --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 44612eb8b4..01ba5ac6d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +_book +node_modules + + # Intellij ################### .idea From ded3775fc62427a5482e65e000490daac8489154 Mon Sep 17 00:00:00 2001 From: mposolda Date: Fri, 3 Jun 2016 20:36:11 +0200 Subject: [PATCH 3/3] Revert redundant note as it's not needed anymore --- topics/cache/disable.adoc | 1 - 1 file changed, 1 deletion(-) diff --git a/topics/cache/disable.adoc b/topics/cache/disable.adoc index f5aa101311..95d45abebf 100755 --- a/topics/cache/disable.adoc +++ b/topics/cache/disable.adoc @@ -25,5 +25,4 @@ Here's what the config looks like initially. To disable the cache set the `enabled` field to false for the cache you want to disable. You must reboot your server for this change to take effect. -NOTE: You must also remove the line like `"provider": "default"` from the `realmCache` configuration. Otherwise disabling cache won't work.