taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

proxy.conf (214B)


      1 server {
      2         listen *:80;
      3 	root /dev/null;
      4 
      5 	location / {
      6 	    autoindex off;
      7             proxy_pass http://exchange:8081;
      8 	}
      9 
     10 	location /admin {
     11 	    autoindex off;
     12 	    proxy_pass http://exchange:18080;
     13 	}
     14 }