@@ -71,6 +71,9 @@ instance of MongoDB:
7171
7272 client = mongoc_client_new ("mongodb://localhost:27017");
7373
74+ To learn more about connecting to local deployments, see :ref:`c-connect-local`
75+ in the Choose a Connection Target guide.
76+
7477Atlas
7578~~~~~
7679
@@ -81,6 +84,9 @@ deployment hosted on Atlas:
8184
8285 client = mongoc_client_new ("mongodb+srv://<db_username>:<db_password>@<hostname>/?<options>");
8386
87+ To learn more about connecting to Atlas, see :ref:`c-connect-atlas` in the
88+ Choose a Connection Target guide.
89+
8490Replica Set
8591~~~~~~~~~~~
8692
@@ -91,15 +97,17 @@ replica set:
9197
9298 client = mongoc_client_new ("mongodb+srv://<replica-set-member>/?replicaSet=<replica_set_name>");
9399
100+ To learn more about connecting to replica sets, see
101+ :ref:`c-connect-replica-sets` in the Choose a Connection Target guide.
102+
94103Transport Layer Security (TLS)
95104------------------------------
96105
97106The following sections describe how to connect to MongoDB
98107while enabling the TLS protocol.
99108
100- .. TODO, uncomment once TLS page is merged
101- .. To learn more about using TLS with the {+driver-short+},
102- .. see :ref:`c-tls`.
109+ To learn more about using TLS with the {+driver-short+},
110+ see :ref:`c-tls`.
103111
104112Enable TLS
105113~~~~~~~~~~
@@ -108,9 +116,8 @@ The following tabs demonstrate how to enable TLS on a connection:
108116
109117.. include:: /includes/connect/tls-tabs.rst
110118
111- .. TODO, uncomment once TLS page is merged
112- .. To learn more about enabling TLS, see :ref:`c-enable-tls` in
113- .. the TLS configuration guide.
119+ To learn more about enabling TLS, see :ref:`c-enable-tls` in
120+ the TLS configuration guide.
114121
115122Disable Hostname Verification
116123~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -120,9 +127,9 @@ connecting by using TLS:
120127
121128.. include:: /includes/connect/disable-host-verification-tabs.rst
122129
123- .. TODO, uncomment once TLS page is merged
124- .. To learn more about disabling hostname verification, see :ref:`c-certificate-revocation` in
125- .. the TLS configuration guide.
130+
131+ To learn more about disabling hostname verification, see :ref:`c-certificate-revocation` in
132+ the TLS configuration guide.
126133
127134Network Compression
128135-------------------
@@ -185,5 +192,4 @@ The following code shows how to specify Stable API settings within a
185192
186193 mongoc_server_api_destroy (api);
187194
188- .. TODO, uncomment once stable API page is merged
189- .. To learn more about the {+stable-api+}, see :ref:`c-stable-api`.
195+ To learn more about the {+stable-api+}, see :ref:`c-stable-api`.
0 commit comments