Skip to content

Commit a2853b1

Browse files
committed
DOP-1883: update to use secure links and for trailing /
1 parent dd5430a commit a2853b1

10 files changed

+23
-25
lines changed

conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
extlinks = {
7474
'issue': ('https://jira.mongodb.org/browse/%s', '' ),
75-
'manual': ('http://docs.mongodb.com/manual%s', ''),
75+
'manual': ('https://docs.mongodb.com/manual%s', ''),
7676
'perl-api': ('https://metacpan.org/pod/MongoDB::%s', ''),
7777
'node-docs': ('http://mongodb.github.io/node-mongodb-native/3.0/%s', ''),
7878
'node-api': ('http://mongodb.github.io/node-mongodb-native/3.0/api/%s', ''),
@@ -84,7 +84,7 @@
8484
'java-async-api': ('http://mongodb.github.io/mongo-java-driver/3.7/javadoc/%s', ''),
8585
'java-sync-api': ('http://mongodb.github.io/mongo-java-driver/3.7/javadoc/%s', ''),
8686
'atlas': ('https://docs.atlas.mongodb.com%s', ''),
87-
'stitch': ('https://docs.mongodb.com/stitch%s', ''),
87+
'stitch': ('https://docs.mongodb.com/realm%s', ''),
8888
}
8989

9090
intersphinx_mapping = {}

source/includes/beginner_note.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
.. note::
2-
This guide is intended for new learners of MongoDB. For more in-depth information, see :manual:`The MongoDB Server Manual </manual/introduction>`.
2+
This guide is intended for new learners of MongoDB. For more in-depth information, see :manual:`The MongoDB Server Manual </introduction/>`.

source/includes/extracts-fact-installation-directories.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ content: |
44
log files in ``/var/log/mongodb``, and runs using the {{mongodUser}}
55
account. You can specify alternative log and data directories using in
66
the MongoDB instance's :manual:`configuration file
7-
</reference/configuration-options>`. This tutorial uses the default
7+
</reference/configuration-options/>`. This tutorial uses the default
88
data and log file paths.
99
---
1010
ref: installation-directory-rhel

source/includes/install-server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
These instructions are for installing MongoDB directly from
2626
an archive file. If you would rather use your linux
2727
distribution's package manager, refer to the
28-
:manual:`installation instructions </installation>` for your
28+
:manual:`installation instructions </installation/>` for your
2929
distribution in the MongoDB Manual.
3030

3131
.. include:: /includes/steps/install-mongodb-on-linux-64.rst

source/includes/migration-pr-compose.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* Your current deployment is a MongoDB replica set or sharded cluster.
3636

3737
If your deployment is currently a standalone instance, you must first
38-
:manual:`convert it to a replica set </tutorial/convert-standalone-to-replica-set>`.
38+
:manual:`convert it to a replica set </tutorial/convert-standalone-to-replica-set/>`.
3939

4040
Live migration of data from sharded clusters is not supported. Your destination
4141
cluster may be sharded, but your source cluster must be an unsharded replica
@@ -44,7 +44,7 @@
4444
* (Optional) Enabled authentication on your source deployment.
4545

4646
The migration process requires that authentication is enabled on your
47-
source cluster. See :manual:`Enable Auth </tutorial/enable-authentication>`
47+
source cluster. See :manual:`Enable Auth </tutorial/enable-authentication/>`
4848
for instructions on enabling authentication.
4949
You can verify that authentication is enabled on your source cluster
5050
using the :manual:`mongo </reference/program/mongo/>` command:
@@ -57,7 +57,7 @@
5757

5858
The user must have the :authrole:`clusterMonitor` and :authrole:`backup` roles. To verify
5959
that the database user that you intend to use for migration has the appropriate
60-
roles, run the :manual:`db.getUser() </reference/method/db.getUser>` command against the admin database.
60+
roles, run the :manual:`db.getUser() </reference/method/db.getUser/>` command against the admin database.
6161

6262
.. code-block:: javascript
6363

source/includes/migration_pr.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
This guide focuses on migrating to Atlas from an existing MongoDB deployment
44
on AWS. If you have data in other database systems, such as MySQL, PostgreSQL, or
5-
DynamoDB, please `contact us <https://mongodbcom-node-staging-2.corp.mongodb.com/contact>`_
5+
DynamoDB, please `contact us <https://mongodb.com/contact>`_
66
for help with your migration.
77

88
* Your current MongoDB database is running MongoDB 2.6 or higher.
99

1010
Atlas supports the latest versions of MongoDB: 3.6, 4.0, and 4.2.
1111
If you're running MongoDB version 2.6 or greater, the Atlas Live Migration
1212
Service can move your data directly into a newer database version.
13-
Update your `MongoDB drivers <https://docs.mongodb.com/ecosystem/drivers>`_
13+
Update your `MongoDB drivers <https://docs.mongodb.com/drivers/>`_
1414
and make any necessary code changes at the application level to ensure
1515
compatibility. If you're running a version older than 2.6, see
1616
`Upgrade MongoDB to 2.6 <https://docs.mongodb.com/v2.6/release-notes/2.6-upgrade/index.html>`_
@@ -19,12 +19,12 @@
1919
* Your current deployment is a MongoDB replica set or sharded cluster.
2020

2121
If your deployment is currently a standalone instance, you must first
22-
:manual:`convert it to a replica set </tutorial/convert-standalone-to-replica-set>`.
22+
:manual:`convert it to a replica set </tutorial/convert-standalone-to-replica-set/>`.
2323

2424
* (Optional) Enabled authentication on your source deployment.
2525

2626
The migration process requires that authentication is enabled on your
27-
source cluster in AWS. See :manual:`Enable Auth </tutorial/enable-authentication>`
27+
source cluster in AWS. See :manual:`Enable Auth </tutorial/enable-authentication/>`
2828
for instructions on enabling authentication.
2929
You can verify that authentication is enabled on your source cluster
3030
using the :manual:`mongo </reference/program/mongo/>` command:
@@ -37,7 +37,7 @@
3737

3838
The user must have the :authrole:`clusterMonitor` and :authrole:`backup` roles. To verify
3939
that the database user that you intend to use for migration has the appropriate
40-
roles, run the :manual:`db.getUser() </reference/method/db.getUser>` command against the admin database.
40+
roles, run the :manual:`db.getUser() </reference/method/db.getUser/>` command against the admin database.
4141

4242
.. code-block:: javascript
4343

source/includes/steps-run-mongodb-on-windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ action:
3030
"C:\Program Files\MongoDB\Server\4.0\bin\mongod.exe" --dbpath "d:\test\mongo db data"
3131
post: |
3232
You may also specify the ``dbpath`` in a :manual:`configuration file
33-
</reference/configuration-options>`.
33+
</reference/configuration-options/>`.
3434
---
3535
title: Start MongoDB.
3636
stepnum: 2
@@ -54,7 +54,7 @@ post: |
5454
``C:\Program Files\MongoDB\Server\4.0\bin\mongod.exe`` from communicating
5555
on networks. All users should select ``Private Networks, such as my home or
5656
work network`` and click ``Allow access``. For additional information on
57-
security and MongoDB, please see the :manual:`Security Documentation </security>`.
57+
security and MongoDB, please see the :manual:`Security Documentation </security/>`.
5858
---
5959
title: Verify that MongoDB has started successfully
6060
stepnum: 3

source/realm/react-web-quickstart.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616
prerequisites:
1717
This guide assumes that you have already created a MongoDB Realm
1818
application and enabled anonymous authentication. For details on how to do
19-
this, see `Create a Realm App
20-
<https://docs.mongodb.com/realm/procedures/create-realm-app>`__ and `Enable
21-
Anonymous Authentication
22-
<https://docs.mongodb.com/realm/procedures/create-realm-app>`__.
19+
this, see :stitch:`Create a Realm App
20+
</get-started/create-realm-app>`.
2321
check_your_environment:
2422
To create and run this application you will need `npm
2523
<https://www.npmjs.com/>`__ installed on your machine.

source/server/install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
* :doc:`/server/auth`
4040
seealso:
4141
- :doc:`/server/introduction` for an introduction to MongoDB.
42-
- :manual:`Installation </installation>` for installation instructions
42+
- :manual:`Installation </installation/>` for installation instructions
4343
for MongoDB Enterprise Edition, details on installing older
4444
versions of MongoDB.

source/server/introduction.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919

2020
Next you'll set up a MongoDB instance. Choose one of the following options:
2121

22-
- :doc:`Install MongoDB locally </server/install>`
22+
- :doc:`Install MongoDB locally </server/install/>`
2323

2424
- `Create an Atlas Account and Cluster <https://docs.atlas.mongodb.com/getting-started/>`__
2525

2626

2727
seealso:
28-
- :manual:`The MongoDB manual on Documents </core/document>`
29-
- :manual:`The MongoDB manual on Data Modeling </core/data-modeling-introduction>`
30-
- You can define the structure of your data for MongoDB using a JSON schema. See :manual:`Schema Validation </core/schema-validation>`.
31-
- Read more about what MongoDB can do, see :manual:`Introduction to MongoDB </introduction>`
28+
- :manual:`The MongoDB manual on Documents </core/document/>`
29+
- :manual:`The MongoDB manual on Data Modeling </core/data-modeling-introduction/>`
30+
- You can define the structure of your data for MongoDB using a JSON schema. See :manual:`Schema Validation </core/schema-validation/>`.
31+
- Read more about what MongoDB can do, see :manual:`Introduction to MongoDB </introduction/>`
3232

3333
.. include:: /includes/beginner_note.rst
3434

0 commit comments

Comments
 (0)