Catching up with breakage

This commit is contained in:
Tim Head
2018-08-11 08:25:21 +02:00
parent ad9ba3634f
commit 22d8957b0b
6 changed files with 24 additions and 12 deletions

View File

@@ -27,7 +27,7 @@ Setting authenticator properties
JupyterHub authenticators are customized by setting *traitlet properties*. In the authenticator's
documentation, you will find these are usually represented as:
.. code-block::
.. code-block:: python
c.<AuthenticatorName>.<property-name> = <some-value>
@@ -40,7 +40,7 @@ You can set these with ``tljh-config`` with:
Example
-------
LDAPAuthenticator's `documentation <https://github.com/jupyterhub/ldapauthenticator#required-configuration>`_
`LDAPAuthenticator's documentation <https://github.com/jupyterhub/ldapauthenticator#required-configuration>`_
lists the various configuration options you can set for LDAPAuthenticator.
When the documentation asks you to set ``LDAPAuthenticator.server_address``
to some value, you can do that with the following command:

View File

@@ -50,7 +50,8 @@ even after you remove them from JupyterHub. Admins should manually remove the us
from the server & archive their home directories as needed. For example, the
following command deletes the unix user associated with the JupyterHub user ``yuvipanda``.
.. code-block::
.. code-block:: bash
sudo userdel jupyter-yuvipanda
If the user removed from the server is an admin, extra care must be taken
@@ -69,4 +70,4 @@ HTTPS
=====
Any internet-facing JupyterHub should use HTTPS to secure its traffic. For
information on how to use HTTPS with your JupyterHub, see :ref:`_howto/https`.
information on how to use HTTPS with your JupyterHub, see :ref:`howto/https`.

View File

@@ -9,12 +9,12 @@ This page is a brief guide to determining whether to use The Littlest JupyterHub
Many of these ideas were first laid out in a
`blog post announcing TLJH <http://words.yuvi.in/post/the-littlest-jupyterhub/>`_.
**The Littlest JupyterHub (TLJH)** (`link <https://the-littlest-jupyterhub.readthedocs.io/en/latest/>`_) is an opinionated and pre-configured distribution
`**The Littlest JupyterHub (TLJH)** <https://the-littlest-jupyterhub.readthedocs.io/en/latest/>`_ is an opinionated and pre-configured distribution
to deploy a JupyterHub on a **single machine** (in the cloud or on your own hardware).
It is designed to be a more lightweight and maintainable solution
for use-cases where size, scalability, and cost-savings are not a huge concern.
**Zero to JupyterHub on Kubernetes** (`link <https://zero-to-jupyterhub.readthedocs.io/en/latest/>`_) allows you
`**Zero to JupyterHub on Kubernetes** <https://zero-to-jupyterhub.readthedocs.io/en/latest/>`_ allows you
to deploy JupyterHub on **Kubernetes**. This allows JupyterHub to scale to many thousands
of users, to flexibly grow/shrink the size of resources it needs, and to use
container technology in administering user sessions.