gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] 01/03: readme


From: gnunet
Subject: [taler-deployment] 01/03: readme
Date: Thu, 27 Oct 2022 16:17:59 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository deployment.

commit 8ce33e270571ec32612d390c755cd0dd6e1aba51
Author: MS <ms@taler.net>
AuthorDate: Thu Oct 27 16:17:07 2022 +0200

    readme
---
 docker/hybrid/README | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

diff --git a/docker/hybrid/README b/docker/hybrid/README
index 8621947..b7c8f64 100644
--- a/docker/hybrid/README
+++ b/docker/hybrid/README
@@ -55,6 +55,11 @@ run the following command to export database, key material, 
and logs:
 
   $ ./backup.sh
 
+The following command imports a TAR backup into
+the Docker volumes.  From this directory:
+
+  $ ./import-backup.sh
+
 Run
 ---
 
@@ -121,3 +126,53 @@ Nginx configuration example deploys this sandbox under
       proxy_pass http://localhost:15000/;
     }
   }
+
+  server {
+    server_name blog.example.com;
+    listen 443 ssl;
+    listen [::]:443 ssl;
+   
+    location / {
+      proxy_set_header X-Forwarded-Host "blog.example.com";
+      proxy_set_header X-Forwarded-Proto "https";
+      proxy_set_header X-Forwarded-Prefix /;
+      proxy_pass http://localhost:5559/;
+    }
+  }
+
+  server {
+    server_name donations.example.com;
+    listen 443 ssl;
+    listen [::]:443 ssl;
+   
+    location / {
+      proxy_set_header X-Forwarded-Host "donations.example.com";
+      proxy_set_header X-Forwarded-Proto "https";
+      proxy_set_header X-Forwarded-Prefix /;
+      proxy_pass http://localhost:5560/;
+    }
+  }
+
+  server {
+    server_name survey.example.com;
+    listen 443 ssl;
+    listen [::]:443 ssl;
+   
+    location / {
+      proxy_set_header X-Forwarded-Host "survey.example.com";
+      proxy_set_header X-Forwarded-Proto "https";
+      proxy_set_header X-Forwarded-Prefix /;
+      proxy_pass http://localhost:5561/;
+    }
+  }
+
+  # Landing page that explains the demo.
+  server {
+    server_name intro.example.com;
+    listen 443 ssl;
+    listen [::]:443 ssl;
+   
+    location / {
+      proxy_pass http://localhost:5562/;
+    }
+  }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]