Andrew Hutchings 30d3e180a4 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
2012-05-01 15:17:29 +01:00

18 lines
209 B
Plaintext

server {
listen 80;
server_name <%= url %>;
root /srv/meetbot-<%= name %>;
types {
text/plain log;
}
location /meetings {
autoindex on;
}
location /irclogs {
autoindex on;
}
}