Hi Philip,
I'd like to add yet another way of password protection ;-)
It's a really simple one, though.
As you already have an Nginx installed as streaming server and reverse
proxy, you can use that one to easily set a simple password (HTTP
authentication).
For this, just edit your nginx configuration (should probably
be /etc/nginx/nginx.conf) and add:
#Password Protection for Engage UI
location ^~ /engage/ui {
auth_basic "Restricted";
auth_basic_user_file engage.htpasswd;
proxy_pass
http://127.0.0.1:8080;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_redirect off;
proxy_buffering off;
proxy_set_header Host
YOUR.SERVER.HOST.DE;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Then you can add user/passwords to the file engage.htaccess (located in
the nginx configuration dir) using the htpasswd tool.
Regards,
Lars
On Sat, 5 Apr 2014 08:39:30 -0700 (PDT)
Ruth Lang <
ruth...@googlemail.com> wrote:
> Hi all,
>
> I don't think it is enough to create only users in the DB, you must
> also define a new role, so that a certain user can see the recordings
> of a certain series.
>
> As we have done a lot of testing in this direction we ended up with
> the following scenarios (we are using those since WS 13/14)
>
> 1) To avoid a complete user management inside MH, lecture recordings
> are available almost entirely via the student's LMS course. They have
> to login there and the LTI interface is used to start the engage
> player. This works perfectly and the effort is
> negligibly<
http://www.dict.cc/englisch-deutsch/negligibly.html>
> >> ------------------------------
> >> *From:* Philip John Mordecai [
philipm...@gmail.com]
> >> *Sent:* 04 April 2014 04:54 PM
> >> *To:*
matterho...@opencast.org
> >> *Subject:* [Matterhorn-Users] Password protection for recordings
> >>
> >> Hello everyone,
> >>
> >> after Rüdiger, Lars and Christian from Osnabrück resolved all of
> >> my problems I actually have a running matterhorn core instance and
> >> a working capture agent! (Thanks again guys!)
> >> The CA is ready to be set up in the lecture hall by next monday to
> >> record four or even five lectures this summer at the University of
> >> Münster.
> >>
> >> Now I have one - hopefully tiny - problem left: Every recorded
> >> lecture has to be protected by a password. I don't need a complex
> >> user management system or anything like that. A simple password
> >> for every lecture would be enough - just as moodle does it. I
> >> checked the wiki but i didnt find thing relevant...
> >>
> >> Cheers,
> >> Philip
> >>
> >>
> >> --
> >> You received this message because you are subscribed to the Google
> >> Groups "Matterhorn Users" group.
> >> To unsubscribe from this group and stop receiving emails from it,
> >> send an email to
matterhorn-use...@opencast.org.
> >> To post to this group, send email to
matterh...@opencast.org.
> >> Visit this group at
> >>
http://groups.google.com/a/opencast.org/group/matterhorn-users/.
> >> ------------------------------
> >> UNIVERSITY OF CAPE TOWN
> >>
> >> This e-mail is subject to the UCT ICT policies and e-mail
> >> disclaimer published on our website at
> >>
http://www.uct.ac.za/about/policies/emaildisclaimer/ or obtainable
> >> from
+27 21 650 9111. This e-mail is intended only for the
> >> person(s) to whom it is addressed. If the e-mail has reached you
> >> in error, please notify the author. If you are not the intended
> >> recipient of the e-mail you may not use, disclose, copy, redirect
> >> or print the content. If this e-mail is not related to the
> >> business of UCT it is sent by the sender in the sender's
> >> individual capacity.
> >>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Matterhorn Users" group.
> > To unsubscribe from this group and stop receiving emails from it,
> > send an email to
matterhorn-use...@opencast.org <javascript:>.
> > To post to this group, send email to
> >
matterho...@opencast.org<javascript:> .
> > Visit this group at
> >
http://groups.google.com/a/opencast.org/group/matterhorn-users/.
> >
> >
> >
> > --
> > ________________________________________________
> > Rüdiger Rolf, M.A.
> > Universität Osnabrück - Zentrum virtUOS
> > Heger-Tor-Wall 12, 49069 Osnabrück
> > Telefon: (0541) 969-6511 - Fax: (0541) 969-16511
> > E-Mail:
rr...@uni-osnabrueck.de <javascript:>
> > Internet:
www.virtuos.uni-osnabrueck.de
> >
> >
>