Skip to content

Commit 7c6bec5

Browse files
authored
Update 650-direct-connections.mdx (#6944)
* Update 650-direct-connections.mdx * Update content/250-postgres/300-database/650-direct-connections.mdx
1 parent 08d5c2c commit 7c6bec5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/250-postgres/300-database/650-direct-connections.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metaTitle: "Direct connections (TCP)"
44
metaDescription: "Learn about connecting directly to your Prisma Postgres database via direct TCP."
55
tocDepth: 3
66
toc: true
7-
sidebar_class_name: early-access-badge
7+
sidebar_class_name: preview-badge
88
---
99

1010
## Overview
@@ -37,13 +37,13 @@ In order to get a direct connection string, you need to:
3737
When you connect to Prisma Postgres via direct TCP, your [connection string](/orm/reference/connection-urls) looks as follows:
3838

3939
```bash
40-
DATABASE_URL="postgres://USER:PASSWORD@postgres.prisma-data.net:5432/?sslmode=require"
40+
DATABASE_URL="postgres://USER:PASSWORD@db.prisma.io:5432/?sslmode=require"
4141
```
4242

4343
The `USER` and `PASSWORD` values are provided when you generate credentials for your Prisma Postgres instance in the [Prisma Console](https://console.prisma.io). Here is an example with sample values:
4444

4545
```bash
46-
DATABASE_URL="postgres://2f9881cc7eef46f094ac913df34c1fb441502fe66cbe28cc48998d4e6b20336b:sk_QZ3u8fMPFfBzOID4ol-mV@postgres.prisma-data.net:5432/?sslmode=require"
46+
DATABASE_URL="postgres://2f9881cc7eef46f094ac913df34c1fb441502fe66cbe28cc48998d4e6b20336b:sk_QZ3u8fMPFfBzOID4ol-mV@db.prisma.io:5432/?sslmode=require"
4747
```
4848

4949
### SSL mode
@@ -89,7 +89,7 @@ Prisma Postgres can be accessed securely via a TCP tunnel using the [`@prisma/pp
8989

9090
:::note
9191

92-
This is an [Early Access](/platform/maturity-levels#early-access) feature of Prisma Postgres. It is not recommended for production use and is not intended for application-level access.
92+
This is a [Early Access](/platform/maturity-levels#early-access) feature of Prisma Postgres. It is not recommended for production use and is not intended for application-level access.
9393

9494
While in Early Access, usage of the TCP tunnel will be free of charge.
9595

0 commit comments

Comments
 (0)