Skip to content

Commit 50602e1

Browse files
FEATURE (encyption): Add info about encryption
1 parent c759df4 commit 50602e1

File tree

3 files changed

+39
-10
lines changed

3 files changed

+39
-10
lines changed

app/page.tsx

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const metadata: Metadata = {
88
description:
99
"Free and open source tool for PostgreSQL scheduled backups. Save them locally and to clouds. Notifications to Slack, Discord, etc.",
1010
keywords:
11-
"PostgreSQL, backup, monitoring, database, scheduled backups, Docker, self-hosted, open source, S3, Google Drive, Slack notifications, Discord, DevOps, database monitoring, pg_dump, database restore",
11+
"PostgreSQL, backup, monitoring, database, scheduled backups, Docker, self-hosted, open source, S3, Google Drive, Slack notifications, Discord, DevOps, database monitoring, pg_dump, database restore, encryption, AES-256, backup encryption",
1212
robots: "index, follow",
1313
alternates: {
1414
canonical: "https://postgresus.com",
@@ -81,8 +81,8 @@ export default function Index() {
8181
"Database health monitoring",
8282
"Self-hosted via Docker",
8383
"Open source and free",
84-
"Support for PostgreSQL 13-17",
85-
"Backup compression and encryption",
84+
"Support for PostgreSQL 13-18",
85+
"Backup compression and AES-256-GCM encryption",
8686
],
8787
screenshot: "https://postgresus.com/images/index/dashboard.svg",
8888
softwareVersion: "latest",
@@ -700,7 +700,7 @@ export default function Index() {
700700

701701
<div className="mt-3 text-sm text-gray-600 md:mt-0 md:text-base">
702702
Files are kept on VPS, cloud storages and other places. You can
703-
choose any storage you. Files are always owned by you need.{" "}
703+
choose any storage you. Files are always owned by you.{" "}
704704
<a
705705
href="/storages"
706706
className="font-semibold text-blue-600 hover:text-blue-700"
@@ -853,6 +853,27 @@ export default function Index() {
853853
</a>
854854
</div>
855855
</div>
856+
857+
<div className="h-[320px] max-h-[320px] w-[320px] rounded-2xl bg-white p-8 md:h-[390px] md:max-h-[390px] md:w-[390px]">
858+
<h3 className="mb-3 text-xl font-bold md:text-2xl">
859+
Encryption
860+
</h3>
861+
862+
<div className="flex h-[120px] max-h-[120px] justify-center pt-7 sm:h-[200px] sm:max-h-[200px]">
863+
<img
864+
className="max-h-[100px] sm:max-h-[130px]"
865+
src="/images/index/feature-encryption.svg"
866+
alt="Backup encryption"
867+
loading="lazy"
868+
/>
869+
</div>
870+
871+
<div className="pt-5 text-sm text-gray-600 sm:pt-5 sm:text-base">
872+
Enterprise-grade encryption protects your backups.
873+
Store encrypted files safely in shared cloud storage without
874+
security concerns
875+
</div>
876+
</div>
856877
</div>
857878
</div>
858879
</div>
@@ -1002,10 +1023,13 @@ export default function Index() {
10021023
<p className="max-w-[500px] md:text-lg">
10031024
No. All the data executes within containers you control, on
10041025
servers you own. Credentials and backup files are left on your
1005-
server or in the cloud account of your choice. Because
1006-
it&apos;s open source, you or your security team, can inspect
1007-
every line to make sure it meets your organization&apos;s
1008-
needs before it&apos;s run.
1026+
server or in the cloud account of your choice. Additionally,
1027+
Postgresus offers enterprise-grade AES-256-GCM encryption for
1028+
your backup files. This means even if someone gains access to
1029+
your storage, encrypted backups remain useless without the
1030+
decryption key. Because it&apos;s open source, you or your
1031+
security team can inspect every line to make sure it meets
1032+
your organization&apos;s needs before it&apos;s run.
10091033
</p>
10101034
</div>
10111035

Lines changed: 3 additions & 0 deletions
Loading

public/llms.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- Self-hosted via Docker with zero-config installation
2121
- Support for PostgreSQL versions 13, 14, 15, 16, 17 and 18
2222
- Backup compression (4-8x size reduction)
23+
- Enterprise-grade AES-256-GCM encryption for backup files
2324
- Open source and free
2425
- Access management for workspaces and users
2526
- Suitable for single developers, DevOps teams, organizations, startups, system administrators and IT departments
@@ -145,6 +146,7 @@ Postgresus is suitable for:
145146
- **Health Checks**: Configurable database monitoring
146147
- **Multi-target**: Store backups to multiple destinations simultaneously
147148
- **Restoration**: One-click restore functionality
149+
- **Encryption**: Enterprise-grade AES-256-GCM encryption for backup files
148150
- **Security**: All data stays within your infrastructure
149151

150152
## FAQ
@@ -168,7 +170,7 @@ Archives saved to local volumes, S3-compatible buckets, Google Drive, Dropbox an
168170
Real-time notifications via email, Slack, Telegram, webhooks, Mattermost, Discord and more. DevOps teams receive immediate alerts for successes and failures.
169171

170172
### Security
171-
All data executes within containers you control on servers you own. Credentials and backup files remain on your server or in your cloud account. Open source allows full code inspection.
173+
All data executes within containers you control on servers you own. Credentials and backup files remain on your server or in your cloud account. Enterprise-grade AES-256-GCM encryption protects backup files, making them useless even if storage is compromised. Open source allows full code inspection.
172174

173175
## Developer Information
174176

@@ -189,5 +191,5 @@ All data executes within containers you control on servers you own. Credentials
189191

190192
## Keywords
191193

192-
PostgreSQL, backup, monitoring, database, scheduled backups, Docker, self-hosted, open source, S3, Google Drive, Slack notifications, Discord, DevOps, database monitoring, pg_dump, database restore, Cloudflare R2, Microsoft Teams, health checks, compression, automation
194+
PostgreSQL, backup, monitoring, database, scheduled backups, Docker, self-hosted, open source, S3, Google Drive, Slack notifications, Discord, DevOps, database monitoring, pg_dump, database restore, Cloudflare R2, Microsoft Teams, health checks, compression, automation, encryption, AES-256-GCM, backup encryption, enterprise security
193195

0 commit comments

Comments
 (0)