taler-deployment

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

commit f09655136d032eea7e318d425ba1915a5d031762
parent a66ce2ce1a973722dae1ef0196eb8b85b6a69c7d
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 20 Jun 2016 17:43:21 +0200

nginx includes for favicon and robots.txt

Diffstat:
Aetc/nginx/conf.d/favicon_robots.conf | 7+++++++
Metc/nginx/sites-enabled/test.site | 1+
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/etc/nginx/conf.d/favicon_robots.conf b/etc/nginx/conf.d/favicon_robots.conf @@ -0,0 +1,7 @@ + location = /robots.txt { + root /var/www/robots-favicon; + } + + location = /favicon.ico { + root /var/www/robots-favicon; + } diff --git a/etc/nginx/sites-enabled/test.site b/etc/nginx/sites-enabled/test.site @@ -2,6 +2,7 @@ server { listen 80; server_name test.taler.net *.test.taler.net; rewrite ^ https://$host$request_uri? permanent; + include conf.d/favicon_robots.conf; }