summaryrefslogtreecommitdiff
path: root/netzbon/nginx-conf/bank.taler-nginx.conf
diff options
context:
space:
mode:
authorJavier Sepulveda <javier.sepulveda@uv.es>2023-03-29 11:55:07 +0200
committerJavier Sepulveda <javier.sepulveda@uv.es>2023-03-29 11:55:07 +0200
commit60432ac1989d34581c2eff5a52e99a42beece3bc (patch)
tree15520e76608a0f6ceb818c98d4b63a21ab6a37e5 /netzbon/nginx-conf/bank.taler-nginx.conf
parentbd807ded30eba27613f9d8f4e3df8761359509bc (diff)
downloaddeployment-60432ac1989d34581c2eff5a52e99a42beece3bc.tar.gz
deployment-60432ac1989d34581c2eff5a52e99a42beece3bc.tar.bz2
deployment-60432ac1989d34581c2eff5a52e99a42beece3bc.zip
Old configurations removed - config_ngix.sh replaced
Diffstat (limited to 'netzbon/nginx-conf/bank.taler-nginx.conf')
-rw-r--r--netzbon/nginx-conf/bank.taler-nginx.conf23
1 files changed, 23 insertions, 0 deletions
diff --git a/netzbon/nginx-conf/bank.taler-nginx.conf b/netzbon/nginx-conf/bank.taler-nginx.conf
new file mode 100644
index 0000000..a9f8059
--- /dev/null
+++ b/netzbon/nginx-conf/bank.taler-nginx.conf
@@ -0,0 +1,23 @@
+server {
+ listen 80;
+ listen [::]:80;
+
+ server_name bank.${DOMAIN_NAME};
+
+ access_log /var/log/nginx/libeufin-sandbox.log;
+ error_log /var/log/nginx/libeufin-sandbox.err;
+
+ location /demobanks/default {
+ proxy_pass http://localhost:5016;
+ }
+
+ location / {
+ index index.html;
+ alias /usr/share/libeufin/demobank-ui/;
+ }
+
+ location = /demobank-ui-settings.js {
+ alias /etc/libeufin/demobank-ui-settings.js;
+ }
+
+}