From: Hugo Villeneuve Date: Sat, 28 Mar 2026 20:19:58 +0000 (-0400) Subject: mympd: disable SSL (https) and enable HTTP port 8081 X-Git-Url: http://gitweb.hugovil.com/sitemap.xml?a=commitdiff_plain;h=b56914accc805ae26dddd84131b028c21228f9c9;p=yocto%2Fmeta-hvmpd.git mympd: disable SSL (https) and enable HTTP port 8081 Disable SSL to avoid browser warnings about self-signed certificate. Signed-off-by: Hugo Villeneuve --- diff --git a/recipes-multimedia/musicpd/mympd_git.bb b/recipes-multimedia/musicpd/mympd_git.bb index f5f5bd2..4b2e8b6 100644 --- a/recipes-multimedia/musicpd/mympd_git.bb +++ b/recipes-multimedia/musicpd/mympd_git.bb @@ -19,9 +19,8 @@ inherit pkgconfig cmake systemd do_install:append() { rm -rf ${D}${systemd_user_unitdir} - # Disable http service because of conflict with ympd on port 8080. - # myMPD can be launched with: https://:8443 - sed -e '/^\[Service\]/s/$/\nEnvironment=MYMPD_HTTP=false/' \ + # Use port 8081 as port 8080 is used by ympd. + sed -e '/^\[Service\]/s/$/\nEnvironment=MYMPD_HTTP_PORT=8081\nEnvironment=MYMPD_SSL=false/' \ -i ${D}${systemd_system_unitdir}/mympd.service }