6764679829
Fixes mime types for meeting logs. Fixes bug #992719 Change-Id: I41f160bfff3e2dd5f1be1cd20f879adefeb16881
20 lines
250 B
Plaintext
20 lines
250 B
Plaintext
server {
|
|
listen 80;
|
|
server_name <%= url %>;
|
|
root /srv/meetbot-<%= name %>;
|
|
|
|
types {
|
|
text/plain log;
|
|
text/plain txt;
|
|
text/html html;
|
|
}
|
|
|
|
location /meetings {
|
|
autoindex on;
|
|
}
|
|
|
|
location /irclogs {
|
|
autoindex on;
|
|
}
|
|
}
|