You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The :func:`~pyngrok.ngrok.connect` method takes ``kwargs`` as well, which allows us to pass
74
-
additional tunnel configurations that are supported by ngrok,
75
-
`as documented here <#tunnel-configurations>`__.
74
+
additional tunnel configurations that are supported by ``ngrok`` (or the ``name`` of a tunnel defined in ``ngrok``'s
75
+
config file), `as documented here <#tunnel-configurations>`__.
76
76
77
77
.. note::
78
78
@@ -164,7 +164,7 @@ Tunnel Configurations
164
164
---------------------
165
165
166
166
It is possible to configure the tunnel when it is created, for instance adding authentication,
167
-
a subdomain, or other additional `tunnel configurations that are supported by ngrok <https://ngrok.com/docs/agent/config/v2/#tunnel-configurations>`_.
167
+
a subdomain, or other additional `tunnel configurations that are supported by ngrok <https://ngrok.com/docs/agent/config/v2/#common-tunnel-configuration-properties>`_.
168
168
This is accomplished by passing them as ``kwargs`` to :func:`~pyngrok.ngrok.connect`, then they will be used as
169
169
properties for the tunnel when it is created.
170
170
@@ -180,6 +180,17 @@ circuit breaker.
180
180
auth="username:password",
181
181
circuit_breaker=50)
182
182
183
+
If we have already have a tunnel `defined in ngrok's config file <https://ngrok.com/docs/agent/config/v2/#tunnel-configurations>`_,
0 commit comments