From a6f2e83c7204e575c690b8fefa55bc974369adac Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Tue, 3 Mar 2026 12:12:31 +0000 Subject: [PATCH] feat: Add FedRAMP legal section and corresponding view --- Home/Routes.ts | 15 +++++++++++++++ Home/Views/fedramp.ejs | 42 ++++++++++++++++++++++++++++++++++++++++++ Home/Views/legal.ejs | 10 ++++++++++ 3 files changed, 67 insertions(+) create mode 100644 Home/Views/fedramp.ejs diff --git a/Home/Routes.ts b/Home/Routes.ts index 58975e38b5..ec7e7a8dda 100755 --- a/Home/Routes.ts +++ b/Home/Routes.ts @@ -1777,6 +1777,21 @@ const HomeFeatureSet: FeatureSet = { }); }); + app.get( + "/legal/fedramp", + (_req: ExpressRequest, res: ExpressResponse) => { + res.render(`${ViewsPath}/legal.ejs`, { + footerCards: true, + support: false, + enableGoogleTagManager: IsBillingEnabled, + cta: true, + blackLogo: false, + section: "fedramp", + requestDemoCta: false, + }); + }, + ); + app.get("/legal/sla", (_req: ExpressRequest, res: ExpressResponse) => { res.render(`${ViewsPath}/legal.ejs`, { footerCards: true, diff --git a/Home/Views/fedramp.ejs b/Home/Views/fedramp.ejs new file mode 100644 index 0000000000..655d08b6cb --- /dev/null +++ b/Home/Views/fedramp.ejs @@ -0,0 +1,42 @@ +
+ +

FedRAMP

+ +

Federal Risk and Authorization Management Program

+
+ +
+ +

Introduction

+ +

The Federal Risk and Authorization Management Program (FedRAMP) is a U.S. government-wide program that provides a + standardized approach to security assessment, authorization, and continuous monitoring for cloud products and + services used by federal agencies.

+ +

FedRAMP and Self-Hosted Deployments

+ +

FedRAMP certification applies specifically to cloud service providers (CSPs) that offer hosted services to U.S. + federal government agencies. It certifies that a cloud-hosted offering meets specific security standards defined + by NIST.

+ +

FedRAMP is not required for self-hosted OneUptime customers. When you deploy OneUptime in your + own infrastructure — whether on-premises or in your own cloud environment — the responsibility for security + authorization falls under your organization's own Authority to Operate (ATO) process, not FedRAMP.

+ +

Why FedRAMP Does Not Apply to Self-Hosted Deployments

+ + + +

Questions

+ +

If you have questions about deploying OneUptime in a government or regulated environment, please + contact: security@oneuptime.com

+
\ No newline at end of file diff --git a/Home/Views/legal.ejs b/Home/Views/legal.ejs index c23fc49689..518da64ca7 100755 --- a/Home/Views/legal.ejs +++ b/Home/Views/legal.ejs @@ -319,6 +319,7 @@ + @@ -443,6 +444,11 @@ PCI DSS +
  • + + FedRAMP + +
  • VPAT (Accessibility) @@ -573,6 +579,10 @@ <%- include('dpa') -%> <% } %> + <% if(section === "fedramp") { %> + <%- include('fedramp') -%> + <% } %> + <% if(section === "vpat") { %> <%- include('vpat') -%> <% } %>