taler-deployment

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

trollslayer.site (434B)


      1 server {
      2        listen 80;
      3        listen   [::]:80; ## listen for ipv4; this line is default and implied
      4  	# 	listen   [::]:80 default_server ipv6only=on; ## listen for ipv6
      5 
      6 	root /var/www/trollslayer/;
      7 
      8 	# Make site accessible from http://localhost/
      9 	server_name trollslayer.decentralise.rennes.inria.fr;
     10 
     11 	location / {
     12 	    proxy_pass http://gnunet.org:20070/shell/;
     13 	    proxy_redirect off;
     14 	    proxy_set_header Host $host;
     15 	}
     16 }