Dwij Mistry
Dwij Mistry
TTwenty
Created by Dwij Mistry on 10/25/2024 in #❓︱help
I’m setting up a self-hosted 20 CRM on AWS but facing some issues accessing it with a custom domain.
changed to public domain but still not working
11 replies
TTwenty
Created by Dwij Mistry on 10/25/2024 in #❓︱help
I’m setting up a self-hosted 20 CRM on AWS but facing some issues accessing it with a custom domain.
Please someone help me i will create end to end setup doc and submit in twenty docs also will create video for the same. Please help
11 replies
TTwenty
Created by Dwij Mistry on 10/25/2024 in #❓︱help
I’m setting up a self-hosted 20 CRM on AWS but facing some issues accessing it with a custom domain.
only white screen is coming
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />

<link rel="icon" href="/icons/android/android-launchericon-48-48.png" />
<link rel="apple-touch-icon" href="/icons/ios/192.png" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="A modern open-source CRM" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/twentyhq/twenty/main/docs/static/img/social-card.png"
/>
<meta property="og:description" content="A modern open-source CRM" />
<meta property="og:title" content="Twenty" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/twentyhq/twenty/main/docs/static/img/social-card.png"
/>

<meta name="twitter:description" content="A modern open-source CRM" />
<meta name="twitter:title" content="Twenty" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
/>

<title>Twenty</title>
<script src="/env-config.js"></script>
<script type="module" crossorigin src="/assets/index-XKZYimht.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-1Bo8F3IF.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />

<link rel="icon" href="/icons/android/android-launchericon-48-48.png" />
<link rel="apple-touch-icon" href="/icons/ios/192.png" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="A modern open-source CRM" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/twentyhq/twenty/main/docs/static/img/social-card.png"
/>
<meta property="og:description" content="A modern open-source CRM" />
<meta property="og:title" content="Twenty" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/twentyhq/twenty/main/docs/static/img/social-card.png"
/>

<meta name="twitter:description" content="A modern open-source CRM" />
<meta name="twitter:title" content="Twenty" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap"
/>

<title>Twenty</title>
<script src="/env-config.js"></script>
<script type="module" crossorigin src="/assets/index-XKZYimht.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-1Bo8F3IF.css">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
11 replies
TTwenty
Created by Dwij Mistry on 10/25/2024 in #❓︱help
I’m setting up a self-hosted 20 CRM on AWS but facing some issues accessing it with a custom domain.
No description
11 replies
TTwenty
Created by Dwij Mistry on 10/25/2024 in #❓︱help
I’m setting up a self-hosted 20 CRM on AWS but facing some issues accessing it with a custom domain.
.env Configuration (current setup):
TAG=v0.31.0

POSTGRES_ADMIN_PASSWORD=somepassword
PG_DATABASE_HOST=db:5432

SERVER_URL=http://localhost:3000
REDIS_HOST=redis
REDIS_PORT=6379

# Use openssl rand -base64 32 for each secret
ACCESS_TOKEN_SECRET=
LOGIN_TOKEN_SECRET=
REFRESH_TOKEN_SECRET=
FILE_TOKEN_SECRET=

SIGN_IN_PREFILLED=false

# auth
AUTH_PASSWORD_ENABLED=true
AUTH_GOOGLE_ENABLED=true
MESSAGING_PROVIDER_GMAIL_ENABLED=true
CALENDAR_PROVIDER_GOOGLE_ENABLED=true
AUTH_GOOGLE_CLIENT_ID=
AUTH_GOOGLE_CLIENT_SECRET=
AUTH_GOOGLE_CALLBACK_URL=https://crm.neemiracle.tech/auth/google/redirect
# AUTH_GOOGLE_CALLBACK_URL=http://localhost:3000/auth/google/redirect
# AUTH_GOOGLE_APIS_CALLBACK_URL=http://localhost:3000/auth/google-apis/get-access-token
IS_SIGN_UP_DISABLED=false
TELEMETRY_ENABLED=false

# storage
STORAGE_TYPE=s3
STORAGE_S3_REGION=
STORAGE_S3_NAME=twenty-crm-neemiracle
STORAGE_S3_ENDPOINT=https://s3.ap-south-1.amazonaws.com
STORAGE_S3_ACCESS_KEY_ID=
STORAGE_S3_SECRET_ACCESS_KEY=

# Message queue
MESSAGE_QUEUE_TYPE=bull-mq

# Captcha
CAPTCHA_DRIVER=google-recaptcha
CAPTCHA_SITE_KEY=
CAPTCHA_SECRET_KEY=
TAG=v0.31.0

POSTGRES_ADMIN_PASSWORD=somepassword
PG_DATABASE_HOST=db:5432

SERVER_URL=http://localhost:3000
REDIS_HOST=redis
REDIS_PORT=6379

# Use openssl rand -base64 32 for each secret
ACCESS_TOKEN_SECRET=
LOGIN_TOKEN_SECRET=
REFRESH_TOKEN_SECRET=
FILE_TOKEN_SECRET=

SIGN_IN_PREFILLED=false

# auth
AUTH_PASSWORD_ENABLED=true
AUTH_GOOGLE_ENABLED=true
MESSAGING_PROVIDER_GMAIL_ENABLED=true
CALENDAR_PROVIDER_GOOGLE_ENABLED=true
AUTH_GOOGLE_CLIENT_ID=
AUTH_GOOGLE_CLIENT_SECRET=
AUTH_GOOGLE_CALLBACK_URL=https://crm.neemiracle.tech/auth/google/redirect
# AUTH_GOOGLE_CALLBACK_URL=http://localhost:3000/auth/google/redirect
# AUTH_GOOGLE_APIS_CALLBACK_URL=http://localhost:3000/auth/google-apis/get-access-token
IS_SIGN_UP_DISABLED=false
TELEMETRY_ENABLED=false

# storage
STORAGE_TYPE=s3
STORAGE_S3_REGION=
STORAGE_S3_NAME=twenty-crm-neemiracle
STORAGE_S3_ENDPOINT=https://s3.ap-south-1.amazonaws.com
STORAGE_S3_ACCESS_KEY_ID=
STORAGE_S3_SECRET_ACCESS_KEY=

# Message queue
MESSAGE_QUEUE_TYPE=bull-mq

# Captcha
CAPTCHA_DRIVER=google-recaptcha
CAPTCHA_SITE_KEY=
CAPTCHA_SECRET_KEY=
11 replies