diff --git a/openmetadata-docs/content/deployment/airflow/index.md b/openmetadata-docs/content/deployment/airflow/index.md
index 395837447ef..78c96558434 100644
--- a/openmetadata-docs/content/deployment/airflow/index.md
+++ b/openmetadata-docs/content/deployment/airflow/index.md
@@ -5,3 +5,9 @@ slug: /deployment/airflow
# Airflow Deployment
+## Custom Airflow Installation
+
+## Configure in the OpenMetadata Server
+
+Show all security info here
+
diff --git a/openmetadata-docs/content/deployment/security/enable-jwt-tokens.md b/openmetadata-docs/content/deployment/security/enable-jwt-tokens.md
new file mode 100644
index 00000000000..6c9922ed378
--- /dev/null
+++ b/openmetadata-docs/content/deployment/security/enable-jwt-tokens.md
@@ -0,0 +1,6 @@
+---
+title: Enable JWT Tokens
+slug: /deployment/security/enable-jwt-tokens
+---
+
+# Enable JWT Tokens
diff --git a/openmetadata-docs/content/deployment/security/enable-ssl/index.md b/openmetadata-docs/content/deployment/security/enable-ssl/index.md
new file mode 100644
index 00000000000..19cb7627453
--- /dev/null
+++ b/openmetadata-docs/content/deployment/security/enable-ssl/index.md
@@ -0,0 +1,27 @@
+---
+title: Enable SSL
+slug: /deployment/security/enable-ssl
+---
+
+# Enable SSL
+
+In this section we will guide you through adding SSL to your OpenMetadata deployment with two different approaches:
+
+
+
+ Use Nginx to enable SSL. This is the simplest solution.
+
+
+ Set SSL directly at the OpenMetadata server.
+
+
diff --git a/openmetadata-docs/content/deployment/security/enable-ssl/nginx.md b/openmetadata-docs/content/deployment/security/enable-ssl/nginx.md
new file mode 100644
index 00000000000..1b29404b0e3
--- /dev/null
+++ b/openmetadata-docs/content/deployment/security/enable-ssl/nginx.md
@@ -0,0 +1,111 @@
+---
+title: Enable SSL with Nginx
+slug: /deployment/security/enable-ssl/nginx
+---
+
+# Enable SSL with Nginx
+
+Nginx can be used as a load balancer or an SSL termination point for OpenMetadata.
+
+In this section, we will look at how to use Nginx and Certbot to deploy SSL. The below instructions are for Ubuntu 20
+and any other flavor of Linux please find similar instructions.
+
+## Install Nginx
+
+Nginx can be installed to a completely different host where you are running OpenMetadata Server or on the same host.
+For simplicity, we will do this on the same host as the OpenMetadata server.
+
+```commandline
+sudo apt update
+sudo apt install nginx
+sudo systemctl start nginx
+```
+
+## Configure Nginx to redirect requests to OpenMetadata
+
+For Nginx to serve this content, it’s necessary to create a server block with the correct directives.
+Instead of modifying the default configuration file directly, let’s make a new one at `/etc/nginx/sites-available/openmetadata`:
+
+```commandline
+sudo vi /etc/nginx/sites-available/openmetadata
+```
+
+And add the below content
+
+```commandline
+server {
+ access_log /var/log/nginx/sandbox-access.log;
+ error_log /var/log/nginx/sandbox-error.log;
+ server_name sandbox.open-metadata.org;
+ location / {
+ proxy_pass http://127.0.0.1:8585;
+ }
+}
+```
+
+In the above configuration, please ensure that the `server_name` matches the domain where you are hosting the OpenMetadata
+server. Also, the `proxy_pass` configuration should point to the OpenMetadata server port.
+
+Then, link the configuration to `sites-enabled` and restart nginx:
+
+```commandline
+sudo ln -s /etc/nginx/sites-available/openmetadata /etc/nginx/sites-enabled/openmetadata
+sudo systemctl restart nginx
+```
+
+The above configuration will serve at port 80, so if you configured a domain like `sandbox.open-metadata.org` one can
+start accessing OpenMetadata server by just pointing the browser to [http://sandbox.open-metadata.org](http://sandbox.open-metadata.org).
+
+## Enable SSL using Certbot
+
+Certbot, [https://certbot.eff.org/](https://certbot.eff.org/), is a non-profit org that distributes the certified X509
+certs and renews them as well.
+
+```commandline
+sudo apt install certbot python3-certbot-nginx
+sudo systemctl reload nginx
+```
+
+## Obtaining an SSL Certificate
+
+Certbot provides a variety of ways to obtain SSL certificates through plugins. The Nginx plugin will take care of
+reconfiguring Nginx and reloading the config whenever necessary. To use this plugin, type the following:
+
+```commandline
+sudo certbot --nginx -d sandbox.open-metadata.org
+```
+
+Replace` sandbox.open-metadata.org` with your domain for OpenMetadata.
+
+If this is your first time running certbot, you will be prompted to enter an email address and agree to the terms of
+service. After doing so, certbot will communicate with the `Let's Encrypt` server, then run a challenge to verify that
+you control the domain you’re requesting a certificate for.
+
+If that’s successful, certbot will ask how you’d like to configure your HTTPS settings.
+
+## Verifying Certbot Auto-Renewal
+
+`Let's Encrypt`'s certificates are only valid for ninety days. This is to encourage users to automate their certificate
+renewal process. The certbot package we installed takes care of this for us by adding a `systemd` timer that will run
+twice a day and automatically renew any certificate that’s within thirty days of expiration.
+
+You can query the status of the timer with `systemctl`:
+```commandline
+sudo systemctl status certbot.timer
+```
+
+to renew, you can run the following command
+
+```commandline
+sudo certbot renew --dry-run
+```
+
+## Summary
+
+In this tutorial, we walked through the setup of Nginx to serve the requests to OpenMetadata and used Certbot to enable
+SSL on Nginx.
+
+Do keep in mind that we secured the external connection to Nginx, and Nginx terminates the SSL connections,
+and the rest of the transport Nginx to the OpenMetadata server is on Plaintext. However, OpenMetadata server should be
+configured to listen to only localhost requests, i.e., It cannot be reached directly from outside traffic except for
+Nginx on that host. This makes it a secure SSL.
diff --git a/openmetadata-docs/content/deployment/security/enable-ssl/openmetadata-server.md b/openmetadata-docs/content/deployment/security/enable-ssl/openmetadata-server.md
new file mode 100644
index 00000000000..ccdb0202d49
--- /dev/null
+++ b/openmetadata-docs/content/deployment/security/enable-ssl/openmetadata-server.md
@@ -0,0 +1,93 @@
+---
+title: Enable SSL at the OpenMetadata Server
+slug: /deployment/security/enable-ssl/openmetadata-server
+---
+
+# Enable SSL at the OpenMetadata Server
+
+The OpenMetadata Server is built using **Dropwizard** and **Jetty**. In this section, we will go through the steps
+involved in setting up SSL for Jetty.
+
+If you would like a simple way to set up SSL, please refer to the guide using [Nginx](/deployment/security/enable-ssl/nginx).
+
+However, this step can be treated as an additional layer of adding SSL to OpenMetadata. In cases where one would use
+Nginx as a load balancer or AWS LB, you can set up SSL at the OpenMetadata server level such that traffic from the
+load balancer to OpenMetadata is going through an encrypted channel.
+
+## Create Self-Signed Certificate
+
+A self-signed certificate should only be used for POC (demo) or `localhost` installation.
+
+For production scenarios, please reach out to your DevOps team to issue an X509 certificate which you can import into a
+Keystore. Run the below command to generate an X509 Certificate and import it into keystore:
+
+```commandline
+keytool -keystore openmetadata.keystore.jks -alias localhost -keyalg RSA -keysize 2048 -sigalg SHA256withRSA -genkey -validity 365
+```
+
+
+
+
+For this example, we are configuring the password to be `test12`. Copy the generated `openmetadata.keystore.jks` to
+OpenMetadata installation path under the `conf` directory.
+
+
+
+
+## Configure openmetadata.yaml
+
+Add the below section to your `openmetadata.yaml` under the `conf` directory. Please add the password you set for the
+Keystore generated above in the config below.
+
+```yaml
+server:
+ rootPath: '/api/*'
+ applicationConnectors:
+ - type: https
+ port: ${SERVER_PORT:-8585}
+ keyStorePath: ./conf/openmetadata.keystore.jks
+ keyStorePassword: test12
+ keyStoreType: JKS
+ supportedProtocols: [TLSv1.2, TLSv1.3]
+ excludedProtocols: [SSL, SSLv2, SSLv2Hello, SSLv3]
+```
+
+## Access OpenMetadata server in the browser
+
+These steps are not necessary if you used proper X509 certificated signed by trusted CA Authority.
+
+Since we used self-signed certificates, browsers such as Chrome or Brave will not allow you to visit
+[https://localhost:8585](https://localhost:8585). You'll get the following error page and there is no way to proceed.
+
+
+
+However, the Safari browser allows you to visit if you click advanced and click proceed. To work around this issue, on
+OS X, you can import the certificate into the keychain and trust it so that browsers can trust and allow you to access
+OpenMetadata.
+
+### Export X509 certificate from Keystore
+
+Run the below command to export the X509 cert.
+
+```commandline
+keytool -export -alias localhost -keystore openmetadata.keystore.jks -rfc -file public.cert
+```
+
+### Import public cert into Keychain - OS X only
+
+Open the KeyChain app in OS X, drag and drop the `public.cert` file generated in the previous command into the Keychain:
+
+
+
+Double-click on `localhost`:
+
+
+
+
+Click on `Trust` to open and set `Always Trust`:
+
+
+
+Once the above steps are finished, all the browsers will allow you to visit the OpenMetadata server using HTTPS.
+However, you'll still a warning in the address bar. All of these steps are not necessary with an X509 certificate issued
+by a trusted authority and one should always use that in production.
diff --git a/openmetadata-docs/content/developers/contribute/build-code-and-run-tests.md b/openmetadata-docs/content/developers/contribute/build-code-and-run-tests.md
new file mode 100644
index 00000000000..893e45a1de1
--- /dev/null
+++ b/openmetadata-docs/content/developers/contribute/build-code-and-run-tests.md
@@ -0,0 +1,6 @@
+---
+title: Build the Code and Run Tests
+slug: /developers/build-code-and-run-tests
+---
+
+# Build the Code and Run Tests
diff --git a/openmetadata-docs/content/developers/contribute/index.md b/openmetadata-docs/content/developers/contribute/index.md
index 5e2aa5df99b..c6558a2d7d3 100644
--- a/openmetadata-docs/content/developers/contribute/index.md
+++ b/openmetadata-docs/content/developers/contribute/index.md
@@ -3,7 +3,7 @@ title: Contribute
slug: /developers/contribute
---
-# Contribute to Open Metadatas
+# How to Contribute
## Local Setup
diff --git a/openmetadata-docs/content/developers/index.md b/openmetadata-docs/content/developers/index.md
index e5e26c7aea9..00cca3e64a8 100644
--- a/openmetadata-docs/content/developers/index.md
+++ b/openmetadata-docs/content/developers/index.md
@@ -1,6 +1,6 @@
---
-title: OpenMetadata SDK
-slug: /developers/sdk
+title: OpenMetadata
+slug: /developers
---
-# OpenMetadata SDK
\ No newline at end of file
+# OpenMetadata
\ No newline at end of file
diff --git a/openmetadata-docs/content/developers/ingestion-workflows/index.md b/openmetadata-docs/content/developers/ingestion-workflows/index.md
deleted file mode 100644
index 65721e3660a..00000000000
--- a/openmetadata-docs/content/developers/ingestion-workflows/index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: Ingestion Workflows
-slug: /developers/ingestion-workflows
----
-
-# Ingestion Workflows
\ No newline at end of file
diff --git a/openmetadata-docs/content/developers/open-source-community.md b/openmetadata-docs/content/developers/open-source-community.md
new file mode 100644
index 00000000000..0fa5055a28c
--- /dev/null
+++ b/openmetadata-docs/content/developers/open-source-community.md
@@ -0,0 +1,6 @@
+---
+title: Open Source Community
+slug: /developers/open-source-community
+---
+
+# Open Source Community
diff --git a/openmetadata-docs/content/main-concepts/high-level-dsgn.md b/openmetadata-docs/content/main-concepts/high-level-design.md
similarity index 100%
rename from openmetadata-docs/content/main-concepts/high-level-dsgn.md
rename to openmetadata-docs/content/main-concepts/high-level-design.md
diff --git a/openmetadata-docs/content/main-concepts/index.md b/openmetadata-docs/content/main-concepts/index.md
index 233351a5222..88f958fe30c 100644
--- a/openmetadata-docs/content/main-concepts/index.md
+++ b/openmetadata-docs/content/main-concepts/index.md
@@ -5,8 +5,8 @@ slug: /main-concepts
# Main Concepts
-Here yiou can find out some information about the main concepts around Open Metadata
+Here you can find out some information about the main concepts around Open Metadata
## Why Open Metadata?
-_blurb here_
\ No newline at end of file
+_blurb here_
diff --git a/openmetadata-docs/content/main-concepts/metadata-standard/apis.md b/openmetadata-docs/content/main-concepts/metadata-standard/apis.md
index b3a81d7f3c8..f28f242a02d 100644
--- a/openmetadata-docs/content/main-concepts/metadata-standard/apis.md
+++ b/openmetadata-docs/content/main-concepts/metadata-standard/apis.md
@@ -1,6 +1,6 @@
---
-title: API's
+title: APIs
slug: /main-concepts/metadata-standard/apis
---
-# API's
\ No newline at end of file
+# APIs
\ No newline at end of file
diff --git a/openmetadata-docs/content/main-concepts/metadata-standard/entities.md b/openmetadata-docs/content/main-concepts/metadata-standard/entities.md
deleted file mode 100644
index eb015d74fc5..00000000000
--- a/openmetadata-docs/content/main-concepts/metadata-standard/entities.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: Entities
-slug: /main-concepts/metadata-standard/entities
----
-
-# Entities
\ No newline at end of file
diff --git a/openmetadata-docs/content/main-concepts/metadata-standard/schemas.md b/openmetadata-docs/content/main-concepts/metadata-standard/schemas.md
new file mode 100644
index 00000000000..b6a37676b77
--- /dev/null
+++ b/openmetadata-docs/content/main-concepts/metadata-standard/schemas.md
@@ -0,0 +1,6 @@
+---
+title: Schemas
+slug: /main-concepts/metadata-standard/schemas
+---
+
+# Schemas
\ No newline at end of file
diff --git a/openmetadata-docs/content/menu.md b/openmetadata-docs/content/menu.md
index 6e108f546cd..353bdf83133 100644
--- a/openmetadata-docs/content/menu.md
+++ b/openmetadata-docs/content/menu.md
@@ -85,6 +85,14 @@ site_menu:
url: /deployment/security/okta/bare-metal
- category: Deployment / Enable Security / Okta SSO / Kubernetes
url: /deployment/security/okta/kubernetes
+ - category: Deployment / Enable Security / Enable SSL
+ url: /deployment/security/enable-ssl
+ - category: Deployment / Enable Security / Enable SSL / Use Nginx
+ url: /deployment/security/enable-ssl/nginx
+ - category: Deployment / Enable Security / Enable SSL / Use the OpenMetadata Server
+ url: /deployment/security/enable-ssl/openmetadata-server
+ - category: Deployment / Enable Security / Enable JWT Tokens
+ url: /deployment/security/enable-jwt-tokens
- category: Deployment / Upgrade OpenMetadata
url: /deployment/upgrade
@@ -336,8 +344,7 @@ site_menu:
- category: OpenMetadata / Discovery & Collaboration
url: /openmetadata/discovery-collaboration
- - category: OpenMetadata / Teams & Users
- url: /openmetadata/users
+
- category: OpenMetadata / Data Quality
url: /openmetadata/data-quality
- category: OpenMetadata / Data Quality / Tests
@@ -345,37 +352,64 @@ site_menu:
- category: OpenMetadata / Data Quality / Metrics
url: /openmetadata/data-quality/metrics
+ - category: OpenMetadata / Teams & Users
+ url: /openmetadata/users
+
+ - category: OpenMetadata / Integrations
+ url: /openmetadata/integrations
+ - category: OpenMetadata / Integrations / Great Expectations & OpenMetadata
+ url: /openmetadata/integrations/great-expectations
+ - category: OpenMetadata / Integrations / Prefect
+ url: /openmetadata/integrations/prefect
+
- category: Main Concepts
url: /main-concepts
color: violet-70
- icon: developer_board
- - category: Main Concepts / Get started
- url: /main-concepts/get-started
+ icon: public
- category: Main Concepts / High Level Design
url: /main-concepts/high-level-design
- category: Main Concepts / Metadata Standard
url: /main-concepts/metadata-standard
- - category: Main Concepts / Metadata Standard / Entities
- url: /main-concepts/metadata-standard/entities
- - category: Main Concepts / Metadata Standard / API's
+ - category: Main Concepts / Metadata Standard / Schemas
+ url: /main-concepts/metadata-standard/schemas
+ - category: Main Concepts / Metadata Standard / APIs
url: /main-concepts/metadata-standard/apis
- category: Developers
url: /developers
color: violet-70
icon: developer_mode
+ - category: Developers / Open Source Community
+ url: /developers/open-source-community
- category: Developers / Contribute
url: /developers/contribute
- - category: Developers / Ingestion Workflows
- url: /developers/ingestion-workflows
- category: Developers / Webhooks
url: /developers/webhooks
- - category: Developers / OpenMetadata SDK
- url: /developers/sdk
- - category: Developers / OpenMetadata SDK / Python SDK
- url: /developers/sdk/python
- - category: Developers / OpenMetadata SDK / Python SDK / ML Model Python SDK
- url: /developers/sdk/python/ml-model-sdk
- - category: Developers / OpenMetadata SDK / Python SDK / Build a Connector
- url: /developers/sdk/python/build-connector
+
+ - category: SDK
+ url: /sdk
+ color: violet-70
+ icon: developer_board
+ - category: SDK / Python SDK
+ url: /sdk/python
+ - category: SDK / Python SDK / Entities
+ url: /sdk/python/entities
+ - category: SDK / Python SDK / Entities / ML Model Python SDK
+ url: /sdk/python/entities/ml-model-sdk
+ - category: SDK / Python SDK / Ingestion
+ url: /sdk/python/ingestion
+ - category: SDK / Python SDK / Ingestion / DBT
+ url: /sdk/python/ingestion/dbt
+ - category: SDK / Python SDK / Build a Connector
+ url: /sdk/python/build-connector
+ - category: SDK / Python SDK / Build a Connector / Source
+ url: /sdk/python/build-connector/source
+ - category: SDK / Python SDK / Build a Connector / Stage
+ url: /sdk/python/build-connector/stage
+ - category: SDK / Python SDK / Build a Connector / Sink
+ url: /sdk/python/build-connector/sink
+ - category: SDK / Python SDK / Build a Connector / Bulk Sink
+ url: /sdk/python/build-connector/bulk-sink
+ - category: SDK / Java SDK
+ url: /sdk/java
---
diff --git a/openmetadata-docs/content/openmetadata/discovery-collaboration/index.md b/openmetadata-docs/content/openmetadata/discovery-collaboration/index.md
index c3253228d7a..4d9da90c9fa 100644
--- a/openmetadata-docs/content/openmetadata/discovery-collaboration/index.md
+++ b/openmetadata-docs/content/openmetadata/discovery-collaboration/index.md
@@ -4,3 +4,13 @@ slug: /openmetadata/discovery-collaboration
---
# Discovery & Collaboration
+
+## Search
+
+## Threads
+
+## Tasks
+
+## Glossaries
+
+## Tags
diff --git a/openmetadata-docs/content/openmetadata/index.md b/openmetadata-docs/content/openmetadata/index.md
index a0c39b19fc8..d5e9ac2b04b 100644
--- a/openmetadata-docs/content/openmetadata/index.md
+++ b/openmetadata-docs/content/openmetadata/index.md
@@ -1,9 +1,9 @@
---
-title: OpenMetadata UI
+title: OpenMetadata
slug: /openmetadata
---
-# OpenMetadata UI
+# OpenMetadata
The OpenMetadata UI is the single stop for all users in the organisation to discover and collaborate.
diff --git a/openmetadata-docs/content/openmetadata/ingestion/index.md b/openmetadata-docs/content/openmetadata/ingestion/index.md
index deb2acc4256..9e6495eb031 100644
--- a/openmetadata-docs/content/openmetadata/ingestion/index.md
+++ b/openmetadata-docs/content/openmetadata/ingestion/index.md
@@ -4,3 +4,11 @@ slug: /openmetadata/ingestion
---
# Metadata Ingestion
+
+Explain how we have different types of workflows and the metadata
+that we can ingest automatically:
+
+- e.g., table metadata
+- DBT
+- Lineage
+- Usage
diff --git a/openmetadata-docs/content/openmetadata/ingestion/lineage.md b/openmetadata-docs/content/openmetadata/ingestion/lineage.md
index e2f49e81fa5..87ecbc60bbd 100644
--- a/openmetadata-docs/content/openmetadata/ingestion/lineage.md
+++ b/openmetadata-docs/content/openmetadata/ingestion/lineage.md
@@ -4,3 +4,7 @@ slug: /openmetadata/ingestion/lineage
---
# Entity Lineage
+
+- Automated lineage (Usage workflow + views)
+- Manual Lineage
+- Tools we use
diff --git a/openmetadata-docs/content/openmetadata/ingestion/workflows/index.md b/openmetadata-docs/content/openmetadata/ingestion/workflows/index.md
index 25ae289aeaa..0dfa57f0705 100644
--- a/openmetadata-docs/content/openmetadata/ingestion/workflows/index.md
+++ b/openmetadata-docs/content/openmetadata/ingestion/workflows/index.md
@@ -4,3 +4,5 @@ slug: /openmetadata/ingestion/workflows
---
# Ingestion Workflows
+
+Explain ingestion, usage and profiler workflows
diff --git a/openmetadata-docs/content/openmetadata/integrations/great-expectations.md b/openmetadata-docs/content/openmetadata/integrations/great-expectations.md
new file mode 100644
index 00000000000..f4c61453ebd
--- /dev/null
+++ b/openmetadata-docs/content/openmetadata/integrations/great-expectations.md
@@ -0,0 +1,6 @@
+---
+title: Great Expectations & OpenMetadata
+slug: /openmetadata/integrations/great-expectations
+---
+
+## GE
\ No newline at end of file
diff --git a/openmetadata-docs/content/openmetadata/integrations/index.md b/openmetadata-docs/content/openmetadata/integrations/index.md
new file mode 100644
index 00000000000..f1ceb73ad43
--- /dev/null
+++ b/openmetadata-docs/content/openmetadata/integrations/index.md
@@ -0,0 +1,8 @@
+---
+title: Integrations
+slug: /openmetadata/integrations
+---
+
+## GE
+
+## Prefect
diff --git a/openmetadata-docs/content/openmetadata/integrations/prefect.md b/openmetadata-docs/content/openmetadata/integrations/prefect.md
new file mode 100644
index 00000000000..83b9c41b020
--- /dev/null
+++ b/openmetadata-docs/content/openmetadata/integrations/prefect.md
@@ -0,0 +1,7 @@
+---
+title: Prefect & OpenMetadata
+slug: /openmetadata/integrations/prefect
+---
+
+## Prefect
+
diff --git a/openmetadata-docs/content/openmetadata/users/index.md b/openmetadata-docs/content/openmetadata/users/index.md
index 4d2441cade4..5b5af51c0b7 100644
--- a/openmetadata-docs/content/openmetadata/users/index.md
+++ b/openmetadata-docs/content/openmetadata/users/index.md
@@ -5,3 +5,4 @@ slug: /openmetadata/users
# Teams & Users
+## Roles and Policies
diff --git a/openmetadata-docs/content/developers/sdk/index.md b/openmetadata-docs/content/sdk/index.md
similarity index 69%
rename from openmetadata-docs/content/developers/sdk/index.md
rename to openmetadata-docs/content/sdk/index.md
index e5e26c7aea9..7faf9972894 100644
--- a/openmetadata-docs/content/developers/sdk/index.md
+++ b/openmetadata-docs/content/sdk/index.md
@@ -1,6 +1,6 @@
---
title: OpenMetadata SDK
-slug: /developers/sdk
+slug: /sdk
---
# OpenMetadata SDK
\ No newline at end of file
diff --git a/openmetadata-docs/content/sdk/java/index.md b/openmetadata-docs/content/sdk/java/index.md
new file mode 100644
index 00000000000..3aa54786326
--- /dev/null
+++ b/openmetadata-docs/content/sdk/java/index.md
@@ -0,0 +1,6 @@
+---
+title: Java SDK
+slug: /sdk/java
+---
+
+# Java SDK
diff --git a/openmetadata-docs/content/sdk/python/build-connector/bulk-sink.md b/openmetadata-docs/content/sdk/python/build-connector/bulk-sink.md
new file mode 100644
index 00000000000..14dddb061e0
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/build-connector/bulk-sink.md
@@ -0,0 +1,6 @@
+---
+title: Bulk Sink
+slug: /sdk/python/build-connector/bulk-sink
+---
+
+# Bulk Sink
diff --git a/openmetadata-docs/content/developers/sdk/python/build-connector.md b/openmetadata-docs/content/sdk/python/build-connector/index.md
similarity index 69%
rename from openmetadata-docs/content/developers/sdk/python/build-connector.md
rename to openmetadata-docs/content/sdk/python/build-connector/index.md
index 6494971df84..ededa000190 100644
--- a/openmetadata-docs/content/developers/sdk/python/build-connector.md
+++ b/openmetadata-docs/content/sdk/python/build-connector/index.md
@@ -1,6 +1,6 @@
---
title: Build a Connector
-slug: /developers/sdk/python/build-connector
+slug: /sdk/python/build-connector
---
# Build a Connector
diff --git a/openmetadata-docs/content/sdk/python/build-connector/sink.md b/openmetadata-docs/content/sdk/python/build-connector/sink.md
new file mode 100644
index 00000000000..ce61073a81c
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/build-connector/sink.md
@@ -0,0 +1,6 @@
+---
+title: Sink
+slug: /sdk/python/build-connector/sink
+---
+
+# Sink
diff --git a/openmetadata-docs/content/sdk/python/build-connector/source.md b/openmetadata-docs/content/sdk/python/build-connector/source.md
new file mode 100644
index 00000000000..1b4dd3de2e8
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/build-connector/source.md
@@ -0,0 +1,6 @@
+---
+title: Source
+slug: /sdk/python/build-connector/source
+---
+
+# Source
diff --git a/openmetadata-docs/content/sdk/python/build-connector/stage.md b/openmetadata-docs/content/sdk/python/build-connector/stage.md
new file mode 100644
index 00000000000..ba6aae4c0e8
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/build-connector/stage.md
@@ -0,0 +1,6 @@
+---
+title: Stage
+slug: /sdk/python/build-connector/stage
+---
+
+# Stage
diff --git a/openmetadata-docs/content/sdk/python/entities/index.md b/openmetadata-docs/content/sdk/python/entities/index.md
new file mode 100644
index 00000000000..97405d1b639
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/entities/index.md
@@ -0,0 +1,6 @@
+---
+title: Python SDK Entities
+slug: /sdk/python/entities
+---
+
+# Python SDK Entities
diff --git a/openmetadata-docs/content/developers/sdk/python/ml-model-skd.md b/openmetadata-docs/content/sdk/python/entities/ml-model-skd.md
similarity index 58%
rename from openmetadata-docs/content/developers/sdk/python/ml-model-skd.md
rename to openmetadata-docs/content/sdk/python/entities/ml-model-skd.md
index 502b3512c2c..383c652818b 100644
--- a/openmetadata-docs/content/developers/sdk/python/ml-model-skd.md
+++ b/openmetadata-docs/content/sdk/python/entities/ml-model-skd.md
@@ -1,6 +1,6 @@
---
title: ML Model Python SDK
-slug: /developers/sdk/python/ml-model-sdk
+slug: /sdk/python/ml-model-sdk
---
# ML Model Python SDK
diff --git a/openmetadata-docs/content/developers/sdk/python/index.md b/openmetadata-docs/content/sdk/python/index.md
similarity index 57%
rename from openmetadata-docs/content/developers/sdk/python/index.md
rename to openmetadata-docs/content/sdk/python/index.md
index b79fa2b367d..11f6a3b0254 100644
--- a/openmetadata-docs/content/developers/sdk/python/index.md
+++ b/openmetadata-docs/content/sdk/python/index.md
@@ -1,6 +1,6 @@
---
title: Python SDK
-slug: /developers/sdk/python
+slug: /sdk/python
---
# Python SDK
\ No newline at end of file
diff --git a/openmetadata-docs/content/sdk/python/ingestion/dbt.md b/openmetadata-docs/content/sdk/python/ingestion/dbt.md
new file mode 100644
index 00000000000..80e3564fb63
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/ingestion/dbt.md
@@ -0,0 +1,7 @@
+---
+title: Python SDK for DBT
+slug: /sdk/python/ingestion/dbt
+---
+
+# Python SDK for DBT
+
diff --git a/openmetadata-docs/content/sdk/python/ingestion/index.md b/openmetadata-docs/content/sdk/python/ingestion/index.md
new file mode 100644
index 00000000000..e382524a212
--- /dev/null
+++ b/openmetadata-docs/content/sdk/python/ingestion/index.md
@@ -0,0 +1,8 @@
+---
+title: Python SDK Ingestion
+slug: /sdk/python/ingestion
+---
+
+# Python SDK Ingestion
+
+Snippets and knowledge specific to ingesting metadata using Python.
diff --git a/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/browser.png b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/browser.png
new file mode 100644
index 00000000000..0b90bd67a8d
Binary files /dev/null and b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/browser.png differ
diff --git a/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-1.png b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-1.png
new file mode 100644
index 00000000000..3542ce5b190
Binary files /dev/null and b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-1.png differ
diff --git a/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-2.png b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-2.png
new file mode 100644
index 00000000000..bbb55cfd663
Binary files /dev/null and b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-2.png differ
diff --git a/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-3.png b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-3.png
new file mode 100644
index 00000000000..e76c79c5459
Binary files /dev/null and b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/import-3.png differ
diff --git a/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/keystore-1.png b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/keystore-1.png
new file mode 100644
index 00000000000..c743ac68a21
Binary files /dev/null and b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/keystore-1.png differ
diff --git a/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/keystore-2.png b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/keystore-2.png
new file mode 100644
index 00000000000..0aecc64a81f
Binary files /dev/null and b/openmetadata-docs/images/deployment/security/enable-ssl/openmetadata-server/keystore-2.png differ