Results 1 to 4 of 4

Thread: https for web access and active directory / ldap integration

  1. #1

    Default https for web access and active directory / ldap integration

    As titled, https for the web Access would be awesome!

    Also, Active Directory or LDAP Integration would make life much easier in a Domain Environment.

    Cheers,

    ITMAN

  2. #2
    Join Date
    Sep 2009
    Posts
    2,680

    Default

    We have plans to add https support but no estimate on when it will be started or completed. Possibly you could use nginx to create a reverse proxy and connect to the proxy using https then forward the request to Mezzmo server as http?

    We will look into adding LDAP support in a future update.

    Mezzmo Android: Install it on your tablet, smartphone, Android TV or Amazon Fire to browse and stream files from your Mezzmo library to all your devices. Full details at http://www.conceiva.com/products/mez...mo_android.asp
    Mezzmo for Kodi Add-on: Install it into Kodi to stream files from your Mezzmo library directly in Kodi. Full details at http://www.mezzmo.com/wiki/doku.php?...odi_user_guide
    Mezzmo for Roku App: Install it onto your Roku to stream files from your Mezzmo library. Full details at http://www.mezzmo.com/wiki/doku.php?...oku_user_guide
    Wiki: User Guides & Reference Manual at http://www.mezzmo.com/wiki
    Facebook: http://www.facebook.com/Mezzmo.DLNA.Server
    Twitter: https://twitter.com/conceiva_mezzmo
    Web: http://www.mezzmo.com

  3. #3
    Join Date
    Sep 2009
    Posts
    2,680

    Default

    We will probably need to add support to the Mezzmo server to handle the extra headers so that the URLs returned use the proxy instead of the local address.

    An example config file for nginx would be:

    upstream mezzmoserver{
    server xxx.xxx.xxx.xxx:53168; #Mezzmo media server
    }

    server
    {
    listen 443 ssl;
    server_name media.mydomain;

    ssl_certificate ssl/server.crt;
    ssl_certificate_key ssl/server.key;

    # Logging
    access_log logs/media.access.log main;
    error_log logs/media.error.log;

    location /
    {
    proxy_pass http://mezzmoserver/web;

    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;

    proxy_set_header X-Forwarded-Proto $scheme;
    add_header Front-End-Https on;

    # By default we dont want redirect it
    proxy_redirect off;

    # Cache
    proxy_buffering off;
    proxy_cache off;
    }



    }
    Last edited by Peter; 04-13-2017 at 09:10 AM.

    Mezzmo Android: Install it on your tablet, smartphone, Android TV or Amazon Fire to browse and stream files from your Mezzmo library to all your devices. Full details at http://www.conceiva.com/products/mez...mo_android.asp
    Mezzmo for Kodi Add-on: Install it into Kodi to stream files from your Mezzmo library directly in Kodi. Full details at http://www.mezzmo.com/wiki/doku.php?...odi_user_guide
    Mezzmo for Roku App: Install it onto your Roku to stream files from your Mezzmo library. Full details at http://www.mezzmo.com/wiki/doku.php?...oku_user_guide
    Wiki: User Guides & Reference Manual at http://www.mezzmo.com/wiki
    Facebook: http://www.facebook.com/Mezzmo.DLNA.Server
    Twitter: https://twitter.com/conceiva_mezzmo
    Web: http://www.mezzmo.com

  4. #4
    Join Date
    Sep 2009
    Posts
    2,680

    Default

    We have made some changes to get https with nginx as a proxy to work, see http://forum.conceiva.com/showthread...0-Beta-testing for more information.

    Mezzmo Android: Install it on your tablet, smartphone, Android TV or Amazon Fire to browse and stream files from your Mezzmo library to all your devices. Full details at http://www.conceiva.com/products/mez...mo_android.asp
    Mezzmo for Kodi Add-on: Install it into Kodi to stream files from your Mezzmo library directly in Kodi. Full details at http://www.mezzmo.com/wiki/doku.php?...odi_user_guide
    Mezzmo for Roku App: Install it onto your Roku to stream files from your Mezzmo library. Full details at http://www.mezzmo.com/wiki/doku.php?...oku_user_guide
    Wiki: User Guides & Reference Manual at http://www.mezzmo.com/wiki
    Facebook: http://www.facebook.com/Mezzmo.DLNA.Server
    Twitter: https://twitter.com/conceiva_mezzmo
    Web: http://www.mezzmo.com

Similar Threads

  1. Active Directory / LDAP
    By itman in forum Mezzmo Wish List and Feedback
    Replies: 1
    Last Post: 06-03-2016, 08:18 AM
  2. How to Remove Computer Directory from DB
    By rcblackwell in forum Mezzmo Questions and Support
    Replies: 7
    Last Post: 02-17-2016, 07:04 AM
  3. Replies: 1
    Last Post: 09-29-2015, 10:03 AM
  4. Chrome https downloads
    By pieterbotes in forum DownloadStudio Questions and Support
    Replies: 1
    Last Post: 01-02-2013, 09:12 AM
  5. Replies: 3
    Last Post: 08-25-2011, 08:47 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •