From d93b09f497820b434e512ea0317296cd4ba7a189 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 29 Feb 2016 11:42:27 +0100 Subject: [PATCH] Polish contribution Closes gh-5204 --- spring-boot-docs/src/main/asciidoc/deployment.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/deployment.adoc b/spring-boot-docs/src/main/asciidoc/deployment.adoc index f36630f988..86d2d4e90f 100644 --- a/spring-boot-docs/src/main/asciidoc/deployment.adoc +++ b/spring-boot-docs/src/main/asciidoc/deployment.adoc @@ -657,9 +657,10 @@ a `.conf` file, LOG_FOLDER=/custom/log/folder ---- -The file should be situated next to the jar file and have the same name but suffixed with +The file is expected next to the jar file and have the same name but suffixed with `.conf` rather than `.jar`. For example, a jar named `/var/myapp/myapp.jar` will use the -configuration file named `/var/myapp/myapp.conf` if it exists. +configuration file named `/var/myapp/myapp.conf` if it exists. You can also use the +`CONF_FOLDER` property to customize the location of that file. To learn about securing this file appropriately, please refer to <>.