server { listen 443 ssl; server_name blog.test.taler.net; ssi on; location / { uwsgi_pass unix:/home/test/sockets/blog.uwsgi; include /etc/nginx/uwsgi_params; } location /backend { rewrite /backend/(.*) /$1 break; proxy_pass http://unix:/home/test/sockets/merchant.http:/; proxy_redirect off; proxy_set_header Host $host; } include conf.d/test.redirects; include conf.d/talerssl; }