From 7bd15053e592a221d4e857f5e3c2368855d0c201 Mon Sep 17 00:00:00 2001 From: Shubham Palriwala Date: Wed, 7 Feb 2024 17:40:48 +0530 Subject: [PATCH] docs: mention reverse proxy & fix font shade in dark mode (#2031) Co-authored-by: Matthias Nannt --- .../app/docs/self-hosting/production/page.mdx | 8 ++++++++ apps/formbricks-com/typography.ts | 8 ++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/apps/formbricks-com/app/docs/self-hosting/production/page.mdx b/apps/formbricks-com/app/docs/self-hosting/production/page.mdx index e3f6c85ebf..e0f96ea606 100644 --- a/apps/formbricks-com/app/docs/self-hosting/production/page.mdx +++ b/apps/formbricks-com/app/docs/self-hosting/production/page.mdx @@ -10,8 +10,16 @@ export const metadata = { If you want to quickly set up a production instance of Formbricks on a server running Ubuntu, we've got you covered! This method utilizes a convenient shell script that takes care of everything, including Docker, Postgres DB, and SSL certificate configuration. The shell script will automatically install all the required dependencies and configure your server, making the process a breeze. + + This setup installs **Traefik** to work as a **reverse proxy**. This configuration is crucial for directing incoming traffic to the correct container, allowing Formbricks to be accessible from the internet securely. + Traefik is chosen for its simplicity and automatic SSL management with Let's Encrypt. + + + This is the quickest way to get Formbricks up and running on an Ubuntu server. The shell script will automatically install all the required dependencies and configure your server, making the process a breeze. +If you want to run Formbricks on a different OS or have more control over the installation process, you can follow the [advanced installation guide](/docs/self-hosting/docker) with Docker. + ### Requirements Before you proceed, make sure you have the following: diff --git a/apps/formbricks-com/typography.ts b/apps/formbricks-com/typography.ts index 84e8abcbb5..e07e8a9d41 100644 --- a/apps/formbricks-com/typography.ts +++ b/apps/formbricks-com/typography.ts @@ -22,18 +22,18 @@ export default function typographyStyles({ theme }: PluginUtils) { "--tw-prose-th-borders": theme("colors.slate.300"), "--tw-prose-td-borders": theme("colors.slate.200"), - "--tw-prose-invert-body": theme("colors.slate.400"), + "--tw-prose-invert-body": theme("colors.slate.200"), "--tw-prose-invert-headings": theme("colors.white"), - "--tw-prose-invert-links": theme("colors.teal.400"), + "--tw-prose-invert-links": theme("colors.teal.200"), "--tw-prose-invert-links-hover": theme("colors.teal.500"), "--tw-prose-invert-links-underline": theme("colors.teal.500 / 0.3"), "--tw-prose-invert-bold": theme("colors.white"), - "--tw-prose-invert-counters": theme("colors.slate.400"), + "--tw-prose-invert-counters": theme("colors.slate.200"), "--tw-prose-invert-bullets": theme("colors.slate.600"), "--tw-prose-invert-hr": theme("colors.white / 0.05"), "--tw-prose-invert-quotes": theme("colors.slate.100"), "--tw-prose-invert-quote-borders": theme("colors.slate.700"), - "--tw-prose-invert-captions": theme("colors.slate.400"), + "--tw-prose-invert-captions": theme("colors.slate.200"), "--tw-prose-invert-code": theme("colors.white"), "--tw-prose-invert-code-bg": theme("colors.slate.700 / 0.15"), "--tw-prose-invert-code-ring": theme("colors.white / 0.1"),