@roramirez here is my configuration, considering I also obfuscated my server IP and I switched to Jenkins failed build RSS feed. I hoped to get some content but theses feeds only sends article titles …
Jenkins provides three global feeds respectively for all (rssAll), falied (rssFailed) and latest (rssLatest) builds at its base URL plus others for each configured job …
By the way I checked that read access is open for anonymous connection by using a local RSS reader (RSSOwl) and it works well.
Thanks for your help.
/* Magic Mirror Config Sample
*
var config = {
port: 8080,
ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”,],
language: 'en',
timeFormat: 24,
units: 'metric',
modules: [
{
module: 'alert',
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: 'newsfeed',
position: 'top_bar',
config: {
feeds: [
{
title: "Jenkins RSS Failed",
url: "http://xxx.xxx.xxx.xxx:8080/rssFailed",
}
]
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== ‘undefined’) {module.exports = config;}