jstone
Im receiving this error when try to deploy to digital ocean as production(Please don’t ask to use gigalixir / fly as this is client requirement). However I got error and websocket isnt working. Im using apache on ubuntu 22 LTS. I already made a search online, however no luck with my issue. Any response is highly appreciated. Thanks
Here is the error
15:14:14.623 [error] Could not check origin for Phoenix.Socket transport.
Origin of the request: http://beta.website.com.my:4000
This happens when you are attempting a socket connection to
a different host than the one configured in your config/
files. For example, in development the host is configured
to "localhost" but you may be trying to access it from
"127.0.0.1". To fix this issue, you may either:
1. update [url: [host: ...]] to your actual host in the
config file for your current environment (recommended)
2. pass the :check_origin option when configuring your
endpoint or when configuring the transport in your
UserSocket module, explicitly outlining which origins
are allowed:
check_origin: ["https://example.com",
"//another.com:888", "//other.com"]
Here is my configuration file for prod.secret.exs
use Config
config :th, Th.Repo,
username: "user",
password: "password",
hostname: "localhost",
database: "th",
pool_size: 10
config :th, ThWeb.Endpoint,
server: true,
http: [port: 4000, transport_options: [socket_opts: [:inet6]]],
check_origin: [
"http://beta.website.com.my",
"http://beta.website.com.my:4000",
"https://beta.website.com.my",
"https://beta.website.com.my:4000",
"http://app.website.com.my",
"http://app.website.com.my:4000",
"https://app.website.com.my",
"https://app.website.com.my:4000"
],
secret_key_base: "SECRET",
Here is my apache configuration
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ServerName beta.website.com.my
ServerAlias beta.website.com.my
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
LoadModule proxy_module modules/mod_proxy.so
ProxyRequests Off
ProxyPreserveHost On
#ProxyPass "/" "ws://localhost:4000/" retry=0 timeout=5
#ProxyPassReverse "/" "ws://localhost:4000/" my_app.tld
ProxyPass "/" "http://beta.website.com.my:4000/" timeout=10
ProxyPassReverse "/" "http://beta.website.com.my:4000/" http://beta.website.com.my
Anything I missing here?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
nevakrien
same error for me so if u found a solution now would be a good time to post
jstone
Hi Sir, Sorry, I did not find any solution for it. I just redeploy on new server using nginx