Created
August 29, 2015 21:38
-
-
Save stochastic-thread/805c2f4b2c0cf089c117 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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