Self-hosted on AWS ElasticBeanstalk #164
Answered
by
robikovacs
robikovacs
asked this question in
General
-
Hi guys, I'm trying to self-host cal.com on AWS with EB, I've created this {
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": "calendso/calendso:latest"
},
"Ports": [
{
"ContainerPort": "3000"
}
]
} It looks like the migrations run successfully @calcom/prisma:db-deploy: 105 migrations found in prisma/migrations
@calcom/prisma:db-deploy:
@calcom/prisma:db-deploy:
@calcom/prisma:db-deploy: No pending migrations to apply.
...
@calcom/web:start: cache bypass, force executing 53c54b494709be00
@calcom/web:start: $ next start
@calcom/web:start: ready - started server on 0.0.0.0:3000, url: http://localhost:3000 But when I go to the website I just get an HTTP 408. Any ideas what can it be? The logs are not showing any errors. |
Beta Was this translation helpful? Give feedback.
Answered by
robikovacs
Sep 15, 2022
Replies: 2 comments
-
I found the issue, it was a LB issue, I was using https instead of http for instance protocol. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
robikovacs
-
Thanks for the info! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found the issue, it was a LB issue, I was using https instead of http for instance protocol.