[ARVADOS] updated: 2c9b40bdc8acd7fdd906c80e2c7f44abfb720de3
git at public.curoverse.com
git at public.curoverse.com
Tue Aug 25 13:06:18 EDT 2015
Summary of changes:
doc/install/install-keepproxy.html.textile.liquid | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
via 2c9b40bdc8acd7fdd906c80e2c7f44abfb720de3 (commit)
from b5a7183d43ca4607fdc259267087e7f795d14de2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 2c9b40bdc8acd7fdd906c80e2c7f44abfb720de3
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Tue Aug 25 13:07:41 2015 -0400
Fix up additional places in keepproxy install docs to use example
"keep$uuid_prefix.your.domain" consistently. refs #6918
diff --git a/doc/install/install-keepproxy.html.textile.liquid b/doc/install/install-keepproxy.html.textile.liquid
index 26addb7..6a531a3 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.<span class="userinput">uuid_prefix</span>.your.domain-ssl.crt;
+ ssl_certificate_key /etc/nginx/keep.<span class="userinput">uuid_prefix</span>.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 <strong>shell server</strong>.
<notextile>
-<pre><code>~$ <span class="userinput">prefix=`arv --format=uuid user current | cut -d- -f1`</span>
-~$ <span class="userinput">echo "Site prefix is '$prefix'"</span>
+<pre><code>~$ <span class="userinput">uuid_prefix=`arv --format=uuid user current | cut -d- -f1`</span>
+~$ <span class="userinput">echo "Site prefix is '$uuid_prefix'"</span>
~$ <span class="userinput">read -rd $'\000' keepservice <<EOF; arv keep_service create --keep-service "$keepservice"</span>
<span class="userinput">{
- "service_host":"<strong>keep.$prefix.your.domain</strong>",
+ "service_host":"<strong>keep.$uuid_prefix.your.domain</strong>",
"service_port":443,
"service_ssl_flag":true,
"service_type":"proxy"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list