taler-deployment

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

buildbot-ssl.site (645B)


      1 server {
      2         listen 443 ssl;
      3 	listen   [::]:443 ssl; ## listen for ipv4; this line is default and implied
      4  	# 	listen   [::]:80 default_server ipv6only=on; ## listen for ipv6
      5 
      6 	root /var/www/buildbot/;
      7 
      8 	# Make site accessible from http://localhost/
      9 	server_name buildbot.taler.net;
     10 	server_name www.buildbot.taler.net;
     11 	server_name bb.taler.net;
     12         include conf.d/talerssl;
     13 
     14 	location / {
     15 	    proxy_pass http://127.0.0.1:8010;
     16 	    proxy_redirect off;
     17 	    proxy_set_header Host $host;
     18             proxy_set_header Upgrade $http_upgrade;
     19             proxy_set_header Connection "upgrade";
     20 	}
     21 
     22         include conf.d/favicon_robots;
     23 }