Skip to content

Commit 803558f

Browse files
committed
work on mongodb page
1 parent 84c95d4 commit 803558f

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

all.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9083,6 +9083,21 @@ <h3>Introduction to MongoDB tutorials</h3>
90839083
in MongoDB.</p>
90849084
</li>
90859085
</ul>
9086+
<h3>MongoDB security</h3>
9087+
<ul>
9088+
<li>
9089+
<p><a href="https://medium.com/@shahinism/for-gods-sake-secure-your-mongo-redis-etc-4f310cf1bed2">For God’s sake, secure your Mongo/Redis/etc!</a>
9090+
explains the weak default security settings provided by many NoSQL
9091+
databases, including MongoDB. Make sure to automate locking down your
9092+
NoSQL databases just as you would any other component in your stack.</p>
9093+
</li>
9094+
<li>
9095+
<p><a href="https://www.mongodb.com/blog/post/mongodb-security-basics-for-your-deployments-in">MongoDB Security Basics For Your Deployments in AWS</a>
9096+
is primarily a guide on AWS security from the perspective of using
9097+
installing and using MongoDB on your own instance. The post covers
9098+
authentication, SSL and firewalls.</p>
9099+
</li>
9100+
</ul>
90869101
<h3>Specific MongoDB resources</h3>
90879102
<ul>
90889103
<li>

mongodb.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,21 @@ <h3>Introduction to MongoDB tutorials</h3>
5555
in MongoDB.</p>
5656
</li>
5757
</ul>
58+
<h3>MongoDB security</h3>
59+
<ul>
60+
<li>
61+
<p><a href="https://medium.com/@shahinism/for-gods-sake-secure-your-mongo-redis-etc-4f310cf1bed2">For God’s sake, secure your Mongo/Redis/etc!</a>
62+
explains the weak default security settings provided by many NoSQL
63+
databases, including MongoDB. Make sure to automate locking down your
64+
NoSQL databases just as you would any other component in your stack.</p>
65+
</li>
66+
<li>
67+
<p><a href="https://www.mongodb.com/blog/post/mongodb-security-basics-for-your-deployments-in">MongoDB Security Basics For Your Deployments in AWS</a>
68+
is primarily a guide on AWS security from the perspective of using
69+
installing and using MongoDB on your own instance. The post covers
70+
authentication, SSL and firewalls.</p>
71+
</li>
72+
</ul>
5873
<h3>Specific MongoDB resources</h3>
5974
<ul>
6075
<li>

source/content/pages/09-data/14-mongodb.markdown

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ storing, querying and analyzing persistence data in Python applications.
2626
in MongoDB.
2727

2828

29+
### MongoDB security
30+
* [For God’s sake, secure your Mongo/Redis/etc!](https://medium.com/@shahinism/for-gods-sake-secure-your-mongo-redis-etc-4f310cf1bed2)
31+
explains the weak default security settings provided by many NoSQL
32+
databases, including MongoDB. Make sure to automate locking down your
33+
NoSQL databases just as you would any other component in your stack.
34+
35+
* [MongoDB Security Basics For Your Deployments in AWS](https://www.mongodb.com/blog/post/mongodb-security-basics-for-your-deployments-in)
36+
is primarily a guide on AWS security from the perspective of using
37+
installing and using MongoDB on your own instance. The post covers
38+
authentication, SSL and firewalls.
39+
40+
2941
### Specific MongoDB resources
3042
* The [PyMongo project](https://api.mongodb.com/python/current/) creators
3143
wrote a retrospective focusing on four decisions they would have done

0 commit comments

Comments
 (0)