Skip to content

Commit

Permalink
Provide built-in authentication method for public webinterface #436
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Feb 15, 2018
1 parent 5698bed commit ec379c9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/application.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Public webinterface warning

- Install a firewall, such as ``ufw`` `UncomplicatedFirewall <https://wiki.ubuntu.com/UncomplicatedFirewall>`_ and restrict traffic to port ``22`` (only for yourself) and port ``80``.

- You should also have Nginx restrict application access when exposing it to the Internet. Simply generate an htpasswd string `using one of the many generators found online <https://www.transip.nl/htpasswd/>`_.
- You should also have Nginx restrict application access when exposing it to the Internet. Simply generate an htpasswd string `using one of the many generators found online <http://www.htaccesstools.com/htpasswd-generator/>`_.

- Paste the htpasswd string in ``/etc/nginx/htpasswd``.

Expand Down
9 changes: 9 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ Please make sure you have a fresh **database backup** before upgrading! Upgradin



v1.14.0 - 2018-xx-xx
^^^^^^^^^^^^^^^^^^^^

**Tickets resolved in this release:**

- [`#436 <https://github.com/dennissiemensma/dsmr-reader/issues/436>`_] Provide built-in authentication method for public webinterface



v1.13.2 - 2018-02-02
^^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion dsmrreader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
from django.utils.version import get_version


VERSION = (1, 13, 2, 'final', 0)
VERSION = (1, 14, 0, 'beta', 1)

__version__ = get_version(VERSION)

0 comments on commit ec379c9

Please sign in to comment.