aboutsummaryrefslogtreecommitdiff
path: root/contrib/packages/fedora/etc-taler-auditor/nginx/sites-available
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-05-21 18:26:02 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-05-21 18:26:02 +0200
commit721cd047ff68daccb4f745dc76b4bc1094703412 (patch)
tree8fa7cb1b010c325b70a12a40b1324d1cce0ec3cd /contrib/packages/fedora/etc-taler-auditor/nginx/sites-available
parent144b3a50a9c83500b3fd02134a678bf2c6a7ed06 (diff)
parent689fd46a60863f9a5b025cec79f5a03be1bddbab (diff)
downloadexchange-721cd047ff68daccb4f745dc76b4bc1094703412.tar.xz
Merge branch 'master' of git+ssh://git.taler.net/exchange
Diffstat (limited to 'contrib/packages/fedora/etc-taler-auditor/nginx/sites-available')
-rw-r--r--contrib/packages/fedora/etc-taler-auditor/nginx/sites-available/taler-auditor18
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/packages/fedora/etc-taler-auditor/nginx/sites-available/taler-auditor b/contrib/packages/fedora/etc-taler-auditor/nginx/sites-available/taler-auditor
new file mode 100644
index 000000000..f74035d53
--- /dev/null
+++ b/contrib/packages/fedora/etc-taler-auditor/nginx/sites-available/taler-auditor
@@ -0,0 +1,18 @@
+server {
+
+ listen 80;
+ listen [::]:80;
+
+ server_name localhost;
+
+ access_log /var/log/nginx/auditor.log;
+ error_log /var/log/nginx/auditor.err;
+
+ location /taler-auditor/ {
+ proxy_pass http://unix:/var/lib/taler-auditor/auditor.sock;
+ proxy_redirect off;
+ proxy_set_header Host $host;
+ proxy_set_header X-Forwarded-Host "localhost";
+ #proxy_set_header X-Forwarded-Proto "https";
+ }
+} \ No newline at end of file