exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

taler-auditor (405B)


      1 server {
      2 
      3   listen 80;
      4   listen [::]:80;
      5 
      6   server_name localhost;
      7 
      8   access_log /var/log/nginx/auditor.log;
      9   error_log /var/log/nginx/auditor.err;
     10 
     11   location /taler-auditor/ {
     12     proxy_pass http://unix:/var/lib/taler-auditor/auditor.sock;
     13     proxy_redirect off;
     14     proxy_set_header Host $host;
     15     proxy_set_header X-Forwarded-Host "localhost";
     16     #proxy_set_header X-Forwarded-Proto "https";
     17   }
     18 }