aboutsummaryrefslogtreecommitdiff
path: root/netzbon/nginx-conf/backend.taler-nginx.conf
blob: 6cf99615947d73f3eee207b2090b31d9ae6b1ca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {

  listen 80;
  listen [::]:80;

  server_name backend.${DOMAIN_NAME};

  location / {
    proxy_pass http://unix:/var/run/taler/merchant-httpd/merchant-http.sock;
  }

}