Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Authentication is not working in prod #68

Open
alexcastano opened this issue Apr 27, 2018 · 1 comment
Open

Authentication is not working in prod #68

alexcastano opened this issue Apr 27, 2018 · 1 comment

Comments

@alexcastano
Copy link

I have the following code in endpoint.ex:

defmodule App.Endpoint do
  use Phoenix.Endpoint, otp_app: :app
  if Application.get_env(:verk_web, :authorization) do
    IO.puts("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++")
    IO.inspect(Application.get_env(:verk_web, :authorization))
    use VerkWeb.Mount, path: "/admin/verk"
    IO.puts("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++")
  else
    raise "Verk authorization"
  end

If I execute this in dev it ask for authorization. When I compile to prod I can see this message:

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[realm: "Admin", username: "admin", password: "password"]
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

If I execute a remote console in the prod server I can get Application.get_env(:verk_web, :authorization) correctly. However I does not ask for authorization. I don't have more ideas to solve this.

I use AWS LoadBalancer and Docker with AWS ECS.

Any help it is very welcome :)

Thanks in advance.

@yknx4
Copy link

yknx4 commented Sep 12, 2019

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants