ollran
Hi,
I created a new Phoenix umbrella application. I am trying to configure it to use different port, but the port does not change.
$ mix phx.new test --umbrella --no-ecto
In test_umbrella/config/prod.exs:
I uncommented this line:
config :test_web, TestWeb.Endpoint, server: true
and configured the ip and the port:
config :test_web, TestWeb.Endpoint,
url: [ip: [0,0,0,0], port: 1234],
cache_static_manifest: "priv/static/cache_manifest.json"
Then I ran:
$ cd test_umbrella/
$ SECRET_KEY_BASE=$(mix phx.gen.secret) MIX_ENV=prod mix phx.server
The server starts, but cowboy listens on port 4000 instead of 1234.
08:14:34.496 [info] Running TestWeb.Endpoint with cowboy 2.6.3 at :::4000 (http)
08:14:34.498 [info] Access TestWeb.Endpoint at http://localhost:1234
08:15:13.928 request_id=Fa1_NZgFyPdDboEAACYH [info] GET /
08:15:13.929 request_id=Fa1_NZgFyPdDboEAACYH [info] Sent 200 in 1ms
$ curl 0.0.0.0:1234
curl: (7) Failed to connect to 0.0.0.0 port 1234: Connection refused
$ curl 127.0.0.1:1234
curl: (7) Failed to connect to 127.0.0.1 port 1234: Connection refused
$ curl 0.0.0.0:4000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
[...]
Some additional information:
$ elixir --version
Erlang/OTP 22 [erts-10.4.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe] [dtrace]
Elixir 1.9.0 (compiled with Erlang/OTP 22)
$ mix phx.new --version
Phoenix v1.4.8
$ uname -a
Darwin MBPro.local 18.6.0 Darwin Kernel Version 18.6.0: Thu Apr 25 23:16:27 PDT 2019; root:xnu-
4903.261.4~2/RELEASE_X86_64 x86_64
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #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
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ollran
Ah yes. I have to use the
PORTenvironment variable:Is this a bug? What happens if I use different port in the configuration file?
NobbZ
Just changing
prod.exsmight not necessarily help. Especially in an umbrella project you need to be very sure about when to edit which file.This though is dependant on you overall config structure.
Just open your umbrellas root
config/config.exsand try to play through theload_configcalls and see if you end up in your applicationsconfig/prod.exs.hubertlepicki
You must have somewhere something like
System.get_env("PORT")or{:system, "PORT"}. Try finding it in your project, you will learn where it’s being set and apparently it overwrites your configuration of prod.exsollran
Thanks! I found this in
test_umbrella/config/prod.secret.exs.Changing the port here works. I think I will configure my application to use the environment variable everywhere.
hubertlepicki
Glad I could help.
LostKobrakai
In short: The
:httpconfig is for listening part, while the:urlconfig is for the url/link generation.