Skip to content

Instantly share code, notes, and snippets.

@stochastic-thread
Created August 29, 2015 21:38
Show Gist options
  • Save stochastic-thread/805c2f4b2c0cf089c117 to your computer and use it in GitHub Desktop.
Save stochastic-thread/805c2f4b2c0cf089c117 to your computer and use it in GitHub Desktop.
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
multi_accept on;
}
http {
server {
listen 80;
server_name www.trophus.com trophus.com;
return 301 https://www.trophus.com$request_uri;
# server_name www.trophus.com;
# ssl_certificate /etc/ssl/SSL.crt;
# ssl_certificate_key /etc/ssl/www_trophus_com.key;
# listen *:80;
# listen *:443 ssl spdy;
# listen [::]:80 ipv6only=on;
# listen [::]:443 ssl spdy ipv6only=on;
# return 301 https://trophus.com$request_uri;
}
server {
listen 443 ssl;
server_name www.trophus.com;
ssl_certificate /etc/ssl/SSL.crt;
ssl_certificate_key /etc/ssl/www_trophus_com.key;
location / {
proxy_pass http://127.0.0.1:4000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
}
}
17:36:39.904 [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"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment