summaryrefslogtreecommitdiff
path: root/etc/nginx/sites-enabled/blog-test-ssl.site
blob: 7ebb86c31026753821da50aecf8514f6782ddd9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
}