
Log files were using a binary mime type, set to text/plain so they can be read on the server Change-Id: I23aef66949d1b336fc82db1f4843e039bbbb71b3
18 lines
209 B
Plaintext
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;
|
|
}
|
|
}
|