taler-deployment

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

commit 90070c760749d3adab5db62104b3ace80e309eb9
parent 76ec58d1197c8d2af2cda34b349a97b42e8a4d76
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Fri, 17 Feb 2017 13:25:16 +0100

Redirect Buildbot site to HTTPS.

Diffstat:
Metc/nginx/sites-enabled/buildbot.site | 13+------------
1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/etc/nginx/sites-enabled/buildbot.site b/etc/nginx/sites-enabled/buildbot.site @@ -9,16 +9,5 @@ server { server_name buildbot.taler.net; server_name www.buildbot.taler.net; - location / { - proxy_pass http://localhost:8010; - proxy_redirect off; - proxy_set_header Host $host; - } - - error_page 502 /502.html; - location = /502.html { - root /home/fournier/buildbot; - } - - include conf.d/favicon_robots; + rewrite ^ https://$server_name$request_uri? permanent; }