diff --git a/apps/formbricks-com/app/docs/self-hosting/migration-guide/page.mdx b/apps/formbricks-com/app/docs/self-hosting/migration-guide/page.mdx index 41f03b9fc2..9139806d65 100644 --- a/apps/formbricks-com/app/docs/self-hosting/migration-guide/page.mdx +++ b/apps/formbricks-com/app/docs/self-hosting/migration-guide/page.mdx @@ -18,7 +18,6 @@ Formbricks v1.2 ships a lot of features targeting our Link Surveys. We have also | -------------------- | -------- | ------------------------------ | ----------------------------------------------------------- | | ENCRYPTION_KEY | true | `openssl rand -hex 32` | Needed for 2 Factor Authentication | | SHORT_URL_BASE | false | `` | Needed if you want to enable shorter links for Link Surveys | -| ASSET_PREFIX_URL | false | `` | Needed if you have a separate URL for hosted assets | ### Deprecated / Removed Environment Variables diff --git a/docker-compose.yml b/docker-compose.yml index 065ea4e119..9b65f29112 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -59,24 +59,17 @@ x-github-auth-enabled: &github_auth_enabled 0 x-github-id: &github_id x-github-secret: &github_secret # Configure Google Login - x-google-auth-enabled: &google_auth_enabled 0 x-google-client-id: &google_client_id x-google-client-secret: &google_client_secret # Disable Sentry warning - x-sentry-ignore-api-resolution-error: &sentry_ignore_api_resolution_error # Enable Sentry Error Tracking - x-next-public-sentry-dsn: &next_public_sentry_dsn # Cron Secret # Set this to a random string to secure your cron endpoints x-cron-secret: &cron_secret YOUR_CRON_SECRET - -# Configure ASSET_PREFIX_URL when you want to ship JS & CSS files from a complete URL instead of the current domain -x-asset-prefix-url: &asset_prefix_url - services: postgres: restart: always @@ -130,7 +123,6 @@ services: GOOGLE_CLIENT_ID: *google_client_id GOOGLE_CLIENT_SECRET: *google_client_secret CRON_SECRET: *cron_secret - ASSET_PREFIX_URL: *asset_prefix_url volumes: postgres: diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index d20e79efb3..eb84f5aa1e 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -65,9 +65,6 @@ x-environment: &environment # GOOGLE_CLIENT_ID: # GOOGLE_CLIENT_SECRET: - # Configure ASSET_PREFIX_URL when you want to ship JS & CSS files from a complete URL instead of the current domain - # ASSET_PREFIX_URL: *asset_prefix_url - services: postgres: restart: always