volumio / Volumio-WebUI

Volumio's WebUI
volumio.org
GNU General Public License v3.0
111 stars 61 forks source link

Logfile Overflow #51

Closed ghost closed 9 years ago

ghost commented 10 years ago

Because the webpage has a refresh loop to stay on top of things, the access_log is growing steadily and with 2 clients it's multiple megabytes in 1 day. Because I run on a Pi, I like to keep writes to a minimum :)

Suggestion for nginx.conf:

access_log logs/access.log main;

access_log off;
jomo commented 10 years ago

Using web sockets would be more work but probably the better solution in the long term

volumio commented 10 years ago

Yep, we'll be using websockets...

jotak commented 10 years ago

Can't nginx have a log rotation/cleaning strategy?

volumio commented 10 years ago

Done! Thanks!