brjhaverkamp wrote: 
> Hello all,
> 
> This has been asked some times before over the years.
> But I am trying to get LMS running mapped on port 80 via an reverse
> proxy on my apache server.
> I have tried about every example config out there, including the
> "official" one here on slimdevices.com:
> http://wiki.slimdevices.com/index.php/CleanURL
> However, It simply does not work.
> The page opens and hangs on 
> Loading Logitech Media Server...
> 
> Has anyone solved this some how in recent years (the link above is from
> 2008..)
> 
> Regards,
> 
> Bert

Hi Bert,

I do this on Centos7 Linux but I reverse proxy to https :-

/etc/httpd/conf.d/lms.mydomain.com.conf


Code:
--------------------
    
  <VirtualHost *:443>
  ServerName lms.mydomain.com
  # Configure the proxy
  ProxyPass / http://localhost:9000/
  ProxyPassReverse / !
  <Location />
  AuthType Basic
  AuthName "Logitech Media Server"
  AuthUserFile /etc/httpd/passwords
  Require valid-user
  </Location>
  SSLEngine on
  SSLCertificateFile /etc/letsencrypt/live/server.mydomain.com/cert.pem
  SSLCertificateKeyFile /etc/letsencrypt/live/server.mydomain.com/privkey.pem
  SSLCertificateChainFile /etc/letsencrypt/live/server.mydomain.com/chain.pem
  </VirtualHost>
  
--------------------


Jeff



*Players:* SliMP3,Squeezebox3 x3,Receiver,SqueezePlayer,PiCorePlayer
x3,Wandboard
*Server:* LMS Version:  7.9.0 - 1475786002 on Centos 7 VM on ESXi 6 on
Dell T320
*Plugins:* AutoRescan/BBCiPlayer/PowerSave/PowerSwitchIII/Squeezecloud
*Remotes:* iPeng8/Orangesqueeze/PC/Jivelite
*Music:* 383GB,1269 albums 17756 songs 4381 artists mostly FLACs

*Want a webapp ?* See
http://forums.slimdevices.com/showthread.php?104305-Webapp-for-LMS
------------------------------------------------------------------------
Jeff07971's Profile: http://forums.slimdevices.com/member.php?userid=49290
View this thread: http://forums.slimdevices.com/showthread.php?t=106471

_______________________________________________
Squeezecenter mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezecenter

Reply via email to