From 2c9b40bdc8acd7fdd906c80e2c7f44abfb720de3 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Tue, 25 Aug 2015 13:07:41 -0400 Subject: [PATCH] Fix up additional places in keepproxy install docs to use example "keep$uuid_prefix.your.domain" consistently. refs #6918 --- doc/install/install-keepproxy.html.textile.liquid | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/install/install-keepproxy.html.textile.liquid b/doc/install/install-keepproxy.html.textile.liquid index 26addb7529..6a531a3784 100644 --- a/doc/install/install-keepproxy.html.textile.liquid +++ b/doc/install/install-keepproxy.html.textile.liquid @@ -85,8 +85,8 @@ server { proxy_set_header X-Real-IP $remote_addr; ssl on; - ssl_certificate /etc/nginx/keep.example.com-ssl.crt; - ssl_certificate_key /etc/nginx/keep.example.com-ssl.key; + ssl_certificate /etc/nginx/keep.uuid_prefix.your.domain-ssl.crt; + ssl_certificate_key /etc/nginx/keep.uuid_prefix.your.domain-ssl.key; # Clients need to be able to upload blocks of data up to 64MiB in size. client_max_body_size 64m; @@ -104,11 +104,11 @@ h3. Tell the API server about the Keepproxy server The API server needs to be informed about the presence of your Keepproxy server. Please execute the following commands on your shell server. -
~$ prefix=`arv --format=uuid user current | cut -d- -f1`
-~$ echo "Site prefix is '$prefix'"
+
~$ uuid_prefix=`arv --format=uuid user current | cut -d- -f1`
+~$ echo "Site prefix is '$uuid_prefix'"
 ~$ read -rd $'\000' keepservice <<EOF; arv keep_service create --keep-service "$keepservice"
 {
- "service_host":"keep.$prefix.your.domain",
+ "service_host":"keep.$uuid_prefix.your.domain",
  "service_port":443,
  "service_ssl_flag":true,
  "service_type":"proxy"
-- 
2.30.2