add robots.txt to nginx conf

This commit is contained in:
Thibault Duplessis 2013-06-02 12:18:49 +02:00
parent 48ce6f9511
commit 7b80c51325

View file

@ -22,7 +22,7 @@ server {
server {
listen 80;
server_name l\.org ~^\w\w\.l\.org$;
server_name l.org ~^\w\w\.l\.org$;
error_log /var/log/nginx/lila.error.log;
@ -61,4 +61,7 @@ server {
location = /timeout.html {
root /home/thib/lila/public/;
}
location = /robots.txt {
root /home/thib/lila/public/;
}
}