Skip to main content

Restrict the access of anonymous users

Project description

This plugins restricts the access of anonymous users to your GNU MediaGoblin instance. You can choose between denying the access - and allowing as needed some route paths - or allowing it by default - and denying some route paths.

Set up the private plugin

  1. Install this Python package from PyPi.

    $ pip install mediagoblin-private

    Or if you’ve checked out this plugin, you should be able to build and install it in the same virtual environment than MediaGoblin. Let’s say it’s in the same parent directory, you can execute:

    $ ../mediagoblin/bin/python setup.py build
    $ ../mediagoblin/bin/python setup.py install
  2. Enable the mediagoblin-private plugin by adding the following line to the [plugins] section of your MediaGoblin configuration file.

    [[mediagoblin_private]]
  3. Restart the MediaGoblin instance for the configuration file changes to be effective.

Configure the private plugin

You should first set deny_access value to define if the access must be denied - e.g. true, the default - or allowed - e.g. false - to anonymous users.

You can also define some route paths exceptions to reverse the restriction behaviour. It could be useful if you want to deny the access of your instance but keep some public pages, for example. You would also want to keep an open MediaGoblin instance but deny the access of anonymous users to some pages or media. Anyway, you can set the following to define your exceptions:

  • path_exceptions: a list - e.g. comma-separated values - of strict route path for which the access will either be denied or allowed.

  • path_regex_exceptions: a list of regular expression to match the route path to either deny or allow - see the Regular Expression HOWTO.

Note that route path which starts with /auth/ will always be allowed.

As an example, the following deny the access of anonymous users to your MediaGoblin instance except for the homepage - e.g. /, an about page at /about/ and route paths which starts with /public/:

[[mediagoblin_private]]
deny_access = true
path_exceptions = '/', '/about/'
path_regex_exceptions = '/public/.*',

Do not forget the trailing comma in case of a single item in the path_exceptions or path_regex_exceptions list!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mediagoblin_private-0.2.0.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page