0
我花了很多時間試圖完成這項工作,因爲它正在切入實際的開發時間。我正在嘗試在我的網站example.com
和example2.com
上設置兩個域名,但在瀏覽器中導航到域名時最多會生成502個域名。節點+ Nginx反向代理從不運行
的etc/nginx/nginx.conf
,我從朋友那裏得到了:
user root;
worker_processes 4;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_names_hash_bucket_size 64;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/sites-enabled/*;
}
的etc/nginx/sites-available/sites
,我也從一個朋友得到:
server {
server_name example.com;
# proxy pass to nodejs
location/{
proxy_pass http://127.0.0.1:9001/;
}
}
server {
server_name example2.com;
# proxy pass to nodejs
location/{
proxy_pass http://127.0.0.1:8000/;
}
}
我在圈子裏已經工作,並嘗試了許多不同所有配置都失敗,這個特定的配置會導致兩個站點出現網關錯誤502。
我從來沒有能夠得到這個工作,我不知道爲什麼,第二套眼睛會非常有幫助。
哦,就是這樣!節點服務器錯誤,並且沒有我注意就關閉了。謝謝! –
太棒了!我正在做你的問題刪除我的意見,因爲他們不再有用。 – Louis