summaryrefslogtreecommitdiff
path: root/depo
diff options
context:
space:
mode:
Diffstat (limited to 'depo')
-rw-r--r--depo/.config/systemd/user/bitcoind.env2
-rw-r--r--depo/.config/systemd/user/bitcoind.service12
-rw-r--r--depo/.config/systemd/user/btc-wire.service14
l---------depo/.config/systemd/user/multi-user.target.wants/bitcoind.service1
l---------depo/.config/systemd/user/multi-user.target.wants/btc-wire.service1
l---------depo/.config/systemd/user/multi-user.target.wants/nginx.service1
l---------depo/.config/systemd/user/multi-user.target.wants/taler-local-blog.service1
l---------depo/.config/systemd/user/multi-user.target.wants/taler-local-donations.service1
l---------depo/.config/systemd/user/multi-user.target.wants/taler-local-exchange.target1
l---------depo/.config/systemd/user/multi-user.target.wants/taler-local-landing.service1
l---------depo/.config/systemd/user/multi-user.target.wants/taler-local-merchant-backend.service1
l---------depo/.config/systemd/user/multi-user.target.wants/wire-gateway.service1
-rw-r--r--depo/.config/systemd/user/nginx.service28
-rw-r--r--depo/.config/systemd/user/taler-local-blog.service11
-rw-r--r--depo/.config/systemd/user/taler-local-donations.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-aggregator.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-closer.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-httpd.service19
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-httpd.socket15
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-secmod-cs.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-secmod-eddsa.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-secmod-rsa.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-transfer.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange-wirewatch.service11
-rw-r--r--depo/.config/systemd/user/taler-local-exchange.target11
-rw-r--r--depo/.config/systemd/user/taler-local-frontends.env7
-rw-r--r--depo/.config/systemd/user/taler-local-landing.service11
-rw-r--r--depo/.config/systemd/user/taler-local-merchant-backend-token.service8
-rw-r--r--depo/.config/systemd/user/taler-local-merchant-backend.service10
-rw-r--r--depo/.config/systemd/user/taler-local-port-redirect.service6
-rw-r--r--depo/.config/systemd/user/wire-gateway.service11
-rw-r--r--depo/.taler/config/nginx.conf20
-rw-r--r--depo/.taler/config/taler.conf344
-rw-r--r--depo/.taler/data/.exists0
-rw-r--r--depo/.taler/sockets/.exists0
35 files changed, 626 insertions, 0 deletions
diff --git a/depo/.config/systemd/user/bitcoind.env b/depo/.config/systemd/user/bitcoind.env
new file mode 100644
index 0000000..8236eb2
--- /dev/null
+++ b/depo/.config/systemd/user/bitcoind.env
@@ -0,0 +1,2 @@
+PASSWORD=password
+PATH=/home/depolymerization/.local/bin:/usr/bin:/bin
diff --git a/depo/.config/systemd/user/bitcoind.service b/depo/.config/systemd/user/bitcoind.service
new file mode 100644
index 0000000..fe825ad
--- /dev/null
+++ b/depo/.config/systemd/user/bitcoind.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=Bitcoind
+
+[Service]
+ExecStart=/home/depolymerization/bitcoin/bin/bitcoind -rpcservertimeout=0
+StandardOutput=append:/home/depolymerization/.taler/logs/bitcoind.log
+StandardError=append:/home/depolymerization/.taler/logs/bitcoind.log
+EnvironmentFile=/home/depolymerization/.config/systemd/user/bitcoind.env
+
+
+[Install]
+WantedBy=multi-user.target
diff --git a/depo/.config/systemd/user/btc-wire.service b/depo/.config/systemd/user/btc-wire.service
new file mode 100644
index 0000000..046cbd3
--- /dev/null
+++ b/depo/.config/systemd/user/btc-wire.service
@@ -0,0 +1,14 @@
+[Unit]
+Description=Bitcoin wire adapter
+After=bitcoind.service
+
+
+
+[Service]
+ExecStart=/home/depolymerization/.cargo/bin/btc-wire -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/btc-wire.log
+StandardError=append:/home/depolymerization/.taler/logs/btc-wire.log
+EnvironmentFile=/home/depolymerization/.config/systemd/user/bitcoind.env
+
+[Install]
+WantedBy=multi-user.target
diff --git a/depo/.config/systemd/user/multi-user.target.wants/bitcoind.service b/depo/.config/systemd/user/multi-user.target.wants/bitcoind.service
new file mode 120000
index 0000000..a315587
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/bitcoind.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/bitcoind.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/btc-wire.service b/depo/.config/systemd/user/multi-user.target.wants/btc-wire.service
new file mode 120000
index 0000000..2449eec
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/btc-wire.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/btc-wire.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/nginx.service b/depo/.config/systemd/user/multi-user.target.wants/nginx.service
new file mode 120000
index 0000000..8a64ca4
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/nginx.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/nginx.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/taler-local-blog.service b/depo/.config/systemd/user/multi-user.target.wants/taler-local-blog.service
new file mode 120000
index 0000000..f4d8ffe
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/taler-local-blog.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/taler-local-blog.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/taler-local-donations.service b/depo/.config/systemd/user/multi-user.target.wants/taler-local-donations.service
new file mode 120000
index 0000000..e461950
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/taler-local-donations.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/taler-local-donations.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/taler-local-exchange.target b/depo/.config/systemd/user/multi-user.target.wants/taler-local-exchange.target
new file mode 120000
index 0000000..3a950c3
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/taler-local-exchange.target
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/taler-local-exchange.target \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/taler-local-landing.service b/depo/.config/systemd/user/multi-user.target.wants/taler-local-landing.service
new file mode 120000
index 0000000..83b3cab
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/taler-local-landing.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/taler-local-landing.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/taler-local-merchant-backend.service b/depo/.config/systemd/user/multi-user.target.wants/taler-local-merchant-backend.service
new file mode 120000
index 0000000..ed207fb
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/taler-local-merchant-backend.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/taler-local-merchant-backend.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/multi-user.target.wants/wire-gateway.service b/depo/.config/systemd/user/multi-user.target.wants/wire-gateway.service
new file mode 120000
index 0000000..9bf47cf
--- /dev/null
+++ b/depo/.config/systemd/user/multi-user.target.wants/wire-gateway.service
@@ -0,0 +1 @@
+/home/depolymerization/.config/systemd/user/wire-gateway.service \ No newline at end of file
diff --git a/depo/.config/systemd/user/nginx.service b/depo/.config/systemd/user/nginx.service
new file mode 100644
index 0000000..f7165de
--- /dev/null
+++ b/depo/.config/systemd/user/nginx.service
@@ -0,0 +1,28 @@
+# Stop dance for nginx
+# =======================
+#
+# ExecStop sends SIGSTOP (graceful stop) to the nginx process.
+# If, after 5s (--retry QUIT/5) nginx is still running, systemd takes control
+# and sends SIGTERM (fast shutdown) to the main process.
+# After another 5s (TimeoutStopSec=5), and if nginx is alive, systemd sends
+# SIGKILL to all the remaining processes in the process group (KillMode=mixed).
+#
+# nginx signals reference doc:
+# http://nginx.org/en/docs/control.html
+#
+[Unit]
+Description=nginx proxy for depolymerization
+Documentation=man:nginx(8)
+
+[Service]
+Type=forking
+PIDFile=/run/nginx.pid
+ExecStartPre=/usr/sbin/nginx -c /home/depolymerization/.taler/config/nginx.conf -t -q -g 'daemon on; master_process on;'
+ExecStart=/usr/sbin/nginx -c /home/depolymerization/.taler/config/nginx.conf -g 'daemon on; master_process on;'
+ExecReload=/usr/sbin/nginx -c /home/depolymerization/.taler/config/nginx.conf -g 'daemon on; master_process on;' -s reload
+ExecStop=-/sbin/start-stop-daemon -c /home/depolymerization/.taler/config/nginx.conf --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid
+TimeoutStopSec=5
+KillMode=mixed
+
+[Install]
+WantedBy=multi-user.target
diff --git a/depo/.config/systemd/user/taler-local-blog.service b/depo/.config/systemd/user/taler-local-blog.service
new file mode 100644
index 0000000..5d6401e
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-blog.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Blog that accepts Taler payments.
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-merchant-demos blog -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-merchant-demos.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-merchant-demos.log
+EnvironmentFile=/home/depolymerization/.config/systemd/user/taler-local-frontends.env
+
+[Install]
+WantedBy=multi-user.target \ No newline at end of file
diff --git a/depo/.config/systemd/user/taler-local-donations.service b/depo/.config/systemd/user/taler-local-donations.service
new file mode 100644
index 0000000..e2c2ad2
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-donations.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Donation Website that accepts Taler payments.
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-merchant-demos donations -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-merchant-demos.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-merchant-demos.log
+EnvironmentFile=/home/depolymerization/.config/systemd/user/taler-local-frontends.env
+
+[Install]
+WantedBy=multi-user.target \ No newline at end of file
diff --git a/depo/.config/systemd/user/taler-local-exchange-aggregator.service b/depo/.config/systemd/user/taler-local-exchange-aggregator.service
new file mode 100644
index 0000000..9e961f1
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-aggregator.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange Aggregator
+PartOf=taler-local-exchange.target
+
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-aggregator --kyc-off -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-aggregator.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-aggregator.log
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange-closer.service b/depo/.config/systemd/user/taler-local-exchange-closer.service
new file mode 100644
index 0000000..47c3ab9
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-closer.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange Closer
+PartOf=taler-local-exchange.target
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-closer -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-closer.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-closer.log
+
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange-httpd.service b/depo/.config/systemd/user/taler-local-exchange-httpd.service
new file mode 100644
index 0000000..fa19bb1
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-httpd.service
@@ -0,0 +1,19 @@
+[Unit]
+Description=Taler Exchange HTTP daemon
+Requires=taler-local-exchange-httpd.socket taler-local-exchange-secmod-cs.service taler-local-exchange-secmod-rsa.service taler-local-exchange-secmod-eddsa.service
+After=taler-local-exchange-secmod-cs.service taler-local-exchange-secmod-rsa.service taler-local-exchange-secmod-eddsa.service
+PartOf=taler-local-exchange.target
+
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-httpd -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-httpd.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-httpd.log
+
+Restart=always
+# Do not dally on restarts.
+RestartSec=1ms
+
+[Install]
+WantedBy=multi-user.target
+
diff --git a/depo/.config/systemd/user/taler-local-exchange-httpd.socket b/depo/.config/systemd/user/taler-local-exchange-httpd.socket
new file mode 100644
index 0000000..96ac2c0
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-httpd.socket
@@ -0,0 +1,15 @@
+[Unit]
+Description=Taler Exchange Socket
+PartOf=taler-local-exchange-httpd.service
+
+[Socket]
+ListenStream=/home/depolymerization/.taler/sockets/exchange.sock
+Accept=no
+Service=taler-local-exchange-httpd.service
+SocketMode=0660
+SocketUser=depolymerization
+SocketGroup=depolymerization
+
+
+[Install]
+WantedBy=sockets.target
diff --git a/depo/.config/systemd/user/taler-local-exchange-secmod-cs.service b/depo/.config/systemd/user/taler-local-exchange-secmod-cs.service
new file mode 100644
index 0000000..1e2e64c
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-secmod-cs.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange CS security module
+PartOf=taler-local-exchange.target
+
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-secmod-cs -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-secmod-cs.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-secmod-cs.log
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange-secmod-eddsa.service b/depo/.config/systemd/user/taler-local-exchange-secmod-eddsa.service
new file mode 100644
index 0000000..dc8f9f6
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-secmod-eddsa.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange EDDSA security module
+PartOf=taler-local-exchange.target
+
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-secmod-eddsa -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-secmod-eddsa.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-secmod-eddsa.log
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange-secmod-rsa.service b/depo/.config/systemd/user/taler-local-exchange-secmod-rsa.service
new file mode 100644
index 0000000..e7df100
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-secmod-rsa.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange RSA security module
+PartOf=taler-local-exchange.target
+
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-secmod-rsa -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-secmod-rsa.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-secmod-rsa.log
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange-transfer.service b/depo/.config/systemd/user/taler-local-exchange-transfer.service
new file mode 100644
index 0000000..9aeef61
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-transfer.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange Transfer
+PartOf=taler-local-exchange.target
+
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-transfer -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-transfer.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-transfer.log
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange-wirewatch.service b/depo/.config/systemd/user/taler-local-exchange-wirewatch.service
new file mode 100644
index 0000000..1b1098b
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange-wirewatch.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Taler Exchange Wirewatch
+PartOf=taler-local-exchange.target
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-exchange-wirewatch -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-exchange-wirewatch.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-exchange-wirewatch.log
+
+Restart=always
+RestartSec=100ms
diff --git a/depo/.config/systemd/user/taler-local-exchange.target b/depo/.config/systemd/user/taler-local-exchange.target
new file mode 100644
index 0000000..2235564
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-exchange.target
@@ -0,0 +1,11 @@
+[Unit]
+Description=GNU Taler exchange
+
+Wants=taler-local-exchange-httpd.service
+Wants=taler-local-exchange-wirewatch.service
+Wants=taler-local-exchange-aggregator.service
+Wants=taler-local-exchange-closer.service
+Wants=taler-local-exchange-transfer.service
+
+[Install]
+WantedBy=multi-user.target
diff --git a/depo/.config/systemd/user/taler-local-frontends.env b/depo/.config/systemd/user/taler-local-frontends.env
new file mode 100644
index 0000000..c884b6c
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-frontends.env
@@ -0,0 +1,7 @@
+PATH=/home/depolymerization/geth:/home/depolymerization/bitcoin/bin:/usr/lib/postgresql/13/bin:/home/depolymerization/.vscode-server/bin/c722ca6c7eed3d7987c0d5c3df5c45f6b15e77d1/bin/remote-cli:/home/depolymerization/.local/bin:/home/depolymerization/geth:/home/depolymerization/bitcoin/bin:/usr/lib/postgresql/13/bin:/home/depolymerization/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games::
+TALER_CONFIG_FILE=/home/depolymerization/.taler/config/taler.conf
+TALER_ENV_URL_INTRO=http://localhost:8080/landing/
+TALER_ENV_URL_BANK=http://localhost:8080/btc-wire/
+TALER_ENV_URL_MERCHANT_BLOG=http://localhost:8080/blog/
+TALER_ENV_URL_MERCHANT_DONATIONS=http://localhost:8080/donations/
+TALER_ENV_URL_MERCHANT_SURVEY=http://localhost:8080/survey/
diff --git a/depo/.config/systemd/user/taler-local-landing.service b/depo/.config/systemd/user/taler-local-landing.service
new file mode 100644
index 0000000..4239e4c
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-landing.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Landing Website of Taler demo.
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-merchant-demos landing -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-merchant-demos.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-merchant-demos.log
+EnvironmentFile=/home/depolymerization/.config/systemd/user/taler-local-frontends.env
+
+[Install]
+WantedBy=multi-user.target \ No newline at end of file
diff --git a/depo/.config/systemd/user/taler-local-merchant-backend-token.service b/depo/.config/systemd/user/taler-local-merchant-backend-token.service
new file mode 100644
index 0000000..e96551d
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-merchant-backend-token.service
@@ -0,0 +1,8 @@
+[Unit]
+Description=Taler Merchant backend with auth token to allow default instance creation.
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-merchant-httpd -a secret-token:secret -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-merchant-httpd.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-merchant-httpd.log
+
diff --git a/depo/.config/systemd/user/taler-local-merchant-backend.service b/depo/.config/systemd/user/taler-local-merchant-backend.service
new file mode 100644
index 0000000..df12179
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-merchant-backend.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=Taler Merchant backend
+
+[Service]
+ExecStart=/home/depolymerization/.local/bin/taler-merchant-httpd -L DEBUG -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/taler-merchant-httpd.log
+StandardError=append:/home/depolymerization/.taler/logs/taler-merchant-httpd.log
+
+[Install]
+WantedBy=multi-user.target \ No newline at end of file
diff --git a/depo/.config/systemd/user/taler-local-port-redirect.service b/depo/.config/systemd/user/taler-local-port-redirect.service
new file mode 100644
index 0000000..21fa037
--- /dev/null
+++ b/depo/.config/systemd/user/taler-local-port-redirect.service
@@ -0,0 +1,6 @@
+[Unit]
+Description=Port redirect allowing configuration at X-Forwarded-Host
+[Service]
+ExecStart=true
+StandardOutput=append:/home/depolymerization/.taler/logs/true.log
+StandardError=append:/home/depolymerization/.taler/logs/true.log \ No newline at end of file
diff --git a/depo/.config/systemd/user/wire-gateway.service b/depo/.config/systemd/user/wire-gateway.service
new file mode 100644
index 0000000..1a8b4b8
--- /dev/null
+++ b/depo/.config/systemd/user/wire-gateway.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Generic wire gateway
+
+[Service]
+ExecStart=/home/depolymerization/.cargo/bin/wire-gateway -c /home/depolymerization/.taler/config/taler.conf
+StandardOutput=append:/home/depolymerization/.taler/logs/wire-gateway.log
+StandardError=append:/home/depolymerization/.taler/logs/wire-gateway.log
+EnvironmentFile=/home/depolymerization/.config/systemd/user/bitcoind.env
+
+[Install]
+WantedBy=multi-user.target
diff --git a/depo/.taler/config/nginx.conf b/depo/.taler/config/nginx.conf
new file mode 100644
index 0000000..12932db
--- /dev/null
+++ b/depo/.taler/config/nginx.conf
@@ -0,0 +1,20 @@
+error_log /home/depolymerization/.taler/logs/nginx.log;
+pid /home/depolymerization/.taler/nginx.pid;
+events {}
+http {
+ access_log /home/depolymerization/.taler/logs/nginx.log;
+ server {
+ listen 8980;
+ location / {
+ return 200 'Hello, I am Nginx - proxying taler-local';
+ }
+ location ~* ^/(?<component>[a-z\-]+)(/(?<taler_uri>.*))? {
+ proxy_pass http://unix:/home/depolymerization/.taler/sockets/$component.sock:/$taler_uri?$args;
+ proxy_redirect off;
+ proxy_set_header X-Forwarded-Prefix /$component;
+ proxy_set_header X-Forwarded-Host localhost:8080;
+ proxy_set_header X-Forwarded-Proto http;
+ client_body_temp_path /tmp/taler-local-nginx;
+ }
+ }
+}
diff --git a/depo/.taler/config/taler.conf b/depo/.taler/config/taler.conf
new file mode 100644
index 0000000..7c2e146
--- /dev/null
+++ b/depo/.taler/config/taler.conf
@@ -0,0 +1,344 @@
+[coin_TESTBTC_ct_00000001]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000001
+cipher = RSA
+
+[coin_TESTBTC_ct_00000002]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000002
+cipher = RSA
+
+[coin_TESTBTC_ct_00000004]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000004
+cipher = RSA
+
+[coin_TESTBTC_ct_00000008]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000008
+cipher = RSA
+
+[coin_TESTBTC_ct_00000016]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000016
+cipher = RSA
+
+[coin_TESTBTC_ct_00000032]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000032
+cipher = RSA
+
+[coin_TESTBTC_ct_00000064]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000064
+cipher = RSA
+
+[coin_TESTBTC_ct_00000128]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000128
+cipher = RSA
+
+[coin_TESTBTC_ct_00000512]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00000512
+cipher = RSA
+
+[coin_TESTBTC_ct_00001024]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00001024
+cipher = RSA
+
+[coin_TESTBTC_ct_00002048]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00002048
+cipher = RSA
+
+[coin_TESTBTC_ct_00004096]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00004096
+cipher = RSA
+
+[coin_TESTBTC_ct_00008192]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00008192
+cipher = RSA
+
+[coin_TESTBTC_ct_00016384]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00016386
+cipher = RSA
+
+[coin_TESTBTC_ct_00032768]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00032768
+cipher = RSA
+
+[coin_TESTBTC_ct_00065536]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00065536
+cipher = RSA
+
+[coin_TESTBTC_ct_00131072]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00131072
+cipher = RSA
+
+[coin_TESTBTC_ct_00262144]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00262144
+cipher = RSA
+
+[coin_TESTBTC_ct_00524288]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.00524288
+cipher = RSA
+
+[coin_TESTBTC_ct_01048576]
+rsa_keysize = 2048
+fee_deposit = TESTBTC:0.00000001
+fee_refund = TESTBTC:0.00000001
+fee_refresh = TESTBTC:0.00000001
+fee_withdraw = TESTBTC:0.00000001
+duration_legal = 2 years
+duration_spend = 6 months
+duration_withdraw = 3 months
+value = TESTBTC:0.01048576
+cipher = RSA
+
+
+
+
+[merchant-account-merchant]
+wire_file_mode = 770
+wire_response = ${TALER_DATA_HOME}/merchant/wire/merchant.json
+
+[merchant-exchange-TESTBTC]
+master_key = 86HV6CHWAVQSFR53939ZXXKDRND6MXYY51EEJJCBEY1SE5ANTDY0
+currency = TESTBTC
+exchange_base_url = https://exchange.btc.taler.net/
+
+[frontends]
+backend_apikey = secret-token:secret
+backend = https://backend.btc.taler.net/
+
+[blog]
+http_unixpath_mode = 660
+http_unixpath = /home/depolymerization/.taler/sockets/blog.sock
+http_serve = unix
+serve = http
+
+[landing]
+http_unixpath_mode = 660
+http_unixpath = /home/depolymerization/.taler/sockets/landing.sock
+http_serve = unix
+serve = http
+
+[donations]
+http_unixpath_mode = 660
+http_unixpath = /home/depolymerization/.taler/sockets/donations.sock
+http_serve = unix
+serve = http
+
+
+[taler]
+CURRENCY_ROUND_UNIT = TESTBTC:0.0000000001
+CURRENCY = TESTBTC
+
+[taler-exchange-secmod-rsa]
+SM_PRIV_KEY = ${TALER_DATA_HOME}/taler-exchange-secmod-rsa/secmod-private-key
+UNIXPATH = /home/depolymerization/.taler/sockets/exchange-secmod-rsa.sock
+
+[taler-exchange-secmod-eddsa]
+SM_PRIV_KEY = ${TALER_DATA_HOME}/taler-exchange-secmod-eddsa/secmod-private-key
+UNIXPATH = /home/depolymerization/.taler/sockets/exchange-secmod-eddsa.sock
+
+[taler-exchange-secmod-cs]
+SM_PRIV_KEY = ${TALER_DATA_HOME}/taler-exchange-secmod-cs/secmod-private-key
+UNIXPATH = /home/depolymerization/.taler/sockets/exchange-secmod-cs.sock
+
+[merchantdb-postgres]
+CONFIG = postgres:///depo-taler
+
+[merchant]
+default_max_deposit_fee = TESTBTC:0.05
+default_max_wire_fee = TESTBTC:0.0078125
+WIRE_TRANSFER_DELAY = 1000 s
+UNIXPATH = /home/depolymerization/.taler/sockets/merchant.sock
+SERVE = unix
+
+[exchangedb-postgres]
+db_conn_str = postgres:///depo-taler
+CONFIG = postgres:///depo-taler
+
+[exchange]
+master_public_key = 86HV6CHWAVQSFR53939ZXXKDRND6MXYY51EEJJCBEY1SE5ANTDY0
+PRIVACY_DIR = $HOME/.local/share/taler-exchange/pp
+TERMS_DIR = $HOME/.local/share/taler-exchange/tos
+BASE_URL = http://localhost:8980/exchange/
+UNIXPATH = /home/depolymerization/.taler/sockets/exchange.sock
+SERVE = unix
+
+[auditordb-postgres]
+db_conn_str = postgres:///depo-taler
+CONFIG = postgres:///depo-taler
+
+[auditor]
+tiny_amount = TESTBTC:0.0000000001
+auditor_url = http://localhost:8980/auditor
+base_url = http://localhost:8980/auditor
+UNIXPATH = /home/depolymerization/.taler/sockets/auditor.sock
+SERVE = unix
+
+[PATHS]
+TALER_RUNTIME_DIR = /home/depolymerization/.taler/runtime
+TALER_DATA_HOME = /home/depolymerization/.taler/data
+
+
+[depolymerizer-bitcoin]
+UNIXPATH = /home/depolymerization/.taler/sockets/btc-wire.sock
+DB_URL = postgres://%2Fvar%2Frun%2Fpostgresql/btc-wire?user=depolymerization
+AUTH_METHOD = none
+PAYTO = payto://bitcoin/tb1qhxrhccqexg0dv4nltgkuw4fg2ce7muplmjsn0v
+
+
+[exchange-accountcredentials-1]
+wire_gateway_url = http://localhost:8980/btc-wire/
+wire_gateway_auth_method = none
+
+[exchange-account-1]
+PAYTO_URI = payto://bitcoin/tb1qhxrhccqexg0dv4nltgkuw4fg2ce7muplmjsn0v
+ENABLE_CREDIT = YES
+ENABLE_DEBIT = YES
diff --git a/depo/.taler/data/.exists b/depo/.taler/data/.exists
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/depo/.taler/data/.exists
diff --git a/depo/.taler/sockets/.exists b/depo/.taler/sockets/.exists
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/depo/.taler/sockets/.exists