Set log file mime type

Log files were using a binary mime type, set to text/plain so they can be read on the server

Change-Id: I23aef66949d1b336fc82db1f4843e039bbbb71b3
This commit is contained in:
Andrew Hutchings 2012-05-01 15:17:29 +01:00
parent 7179bdbfbc
commit 30d3e180a4

View File

@ -3,6 +3,10 @@ server {
server_name <%= url %>;
root /srv/meetbot-<%= name %>;
types {
text/plain log;
}
location /meetings {
autoindex on;
}