2

Nginx を介して Phoenix アプリに接続するように Web ソケットを設定しようとしていますが、403 エラーが発生し続けます。これを本番環境で機能させるための正しい構成を誰でもアドバイスできますか-開発環境は問題ありません。

私のNginx conf:

upstream phoenix {
  server 127.0.0.1:4000 max_fails=5 fail_timeout=60s;
}

server {
  server_name <app-domain>;
  listen 80;

  location / {
    allow all;

    # Proxy Headers
    proxy_http_version 1.1;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-Cluster-Client-Ip $remote_addr;

    # The Important Websocket Bits!
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";

    proxy_pass http://phoenix;
  }
}

私の prod.exs conf:

use Mix.Config

config :logger, level: :info
config :phoenix, :serve_endpoints, true

config :app, App.Endpoint,
  http: [port: 4000],
  url: [host: "127.0.0.1", port: 4000],
  root: '.',
  cache_static_manifest: "priv/static/manifest.json",
  server: true

config :app, App.Repo,
  username: System.get_env("MONGO_USERNAME"),
  password: System.get_env("MONGO_PASSWORD"),
  database: "template",
  hostname: "localhost",
  pool_size: 10

必要に応じて、リクエストに応じて追加情報を提供できます。

ドメイン名を介してアプリに問題なくアクセスできます。最後に残っている唯一の問題は、Web ソケットを機能させることです。

私を正しい方向に向けることができる人に感謝します。

4

1 に答える 1

5

フェニックスサイトのガイドに従いました。 Exrm リリース - フェニックス

あなたのnginx.configにはこれがありません:

# The following map statement is required
# if you plan to support channels. See https://www.nginx.com/blog/websocket-nginx/
map $http_upgrade $connection_upgrade {
    default upgrade;
    '' close;
}

リリースをサーバーに出荷した後、ローカル マシンでリリースを生成するときにもエラーが発生しました。

したがって、サーバー環境内でリリースを生成することをお勧めします。

編集:

ブラウザ コンソールのエラー:

ws://phoenix.hollyer.me.uk/socket/websocket?token=&vsn=1.0.0' failed: Error during WebSocket handshake: Unexpected response code: 403

これはおそらくこのエラーです。サーバー内でコンソールを起動してみてください。

[error] Could not check origin for Phoenix.Socket transport.

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"]

したがって、次のようにホストを再構成できます。

[url: [host: "http://www.phoenix.hollyer.me.uk"]]

:check_origin オプションをエンドポイント構成または UserSocket モジュールに渡します。

check_origin: ["http://www.phoenix.hollyer.me.uk"]

そして、もう一度デプロイしてみてください。

于 2016-07-06T17:42:12.977 に答える