Add Cloudflare, retrying
This commit is contained in:
parent
824a4b5910
commit
47121906f5
|
@ -65,6 +65,7 @@ Import an Existing Certificate
|
|||
You can add notification options and upload the created certificate to a destination, both
|
||||
of these are editable features and can be changed after the certificate has been created.
|
||||
|
||||
.. _CreateANewUser:
|
||||
|
||||
Create a New User
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -191,7 +191,7 @@ Your database installation requires the pg_trgm extension. If you do not have th
|
|||
psql
|
||||
postgres=# ALTER USER lemur WITH SUPERUSER
|
||||
|
||||
Additional notifications can be created through the UI or API. See :ref:`Creating Notifications <CreatingNotifications>` and :ref:`Command Line Interface <CommandLineInterface>` for details.
|
||||
Additional notifications can be created through the UI or API. See :ref:`Notification Options <NotificationOptions>` and :ref:`Command Line Interface <CommandLineInterface>` for details.
|
||||
|
||||
**Make note of the password used as this will be used during first login to the Lemur UI.**
|
||||
|
||||
|
@ -209,7 +209,7 @@ Additional notifications can be created through the UI or API. See :ref:`Creati
|
|||
postgres=# ALTER USER lemur WITH NOSUPERUSER
|
||||
|
||||
|
||||
.. note:: It is recommended that once the ``lemur`` user is created that you create individual users for every day access. There is currently no way for a user to self enroll for Lemur access, they must have an administrator create an account for them or be enrolled automatically through SSO. This can be done through the CLI or UI. See :ref:`Creating Users <CreatingUsers>` and :ref:`Command Line Interface <CommandLineInterface>` for details.
|
||||
.. note:: It is recommended that once the ``lemur`` user is created that you create individual users for every day access. There is currently no way for a user to self enroll for Lemur access, they must have an administrator create an account for them or be enrolled automatically through SSO. This can be done through the CLI or UI. See :ref:`Creating a New User <CreateANewUser>` and :ref:`Command Line Interface <CommandLineInterface>` for details.
|
||||
|
||||
Set Up a Reverse Proxy
|
||||
----------------------
|
||||
|
|
|
@ -7,6 +7,7 @@ acme
|
|||
arrow
|
||||
boto3
|
||||
botocore
|
||||
CloudFlare
|
||||
cryptography
|
||||
dnspython3
|
||||
Flask
|
||||
|
@ -29,6 +30,7 @@ pem
|
|||
pyjwt
|
||||
pyOpenSSL
|
||||
raven[flask]
|
||||
retrying
|
||||
SQLAlchemy-Utils
|
||||
xmltodict
|
||||
|
||||
|
|
|
@ -20,6 +20,8 @@ certifi==2020.12.5
|
|||
# via requests
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
cloudflare==2.8.15
|
||||
# manual debug
|
||||
cryptography==3.4.5
|
||||
# manual debug
|
||||
dnspython3==1.15.0
|
||||
|
@ -84,6 +86,8 @@ pytz==2019.3
|
|||
# via babel
|
||||
raven[flask]==6.10.0
|
||||
# manual debug
|
||||
retrying==1.3.3
|
||||
# manual debug
|
||||
requests==2.25.1
|
||||
# via sphinx
|
||||
six==1.15.0
|
||||
|
|
Loading…
Reference in New Issue