我試圖建立一個域名爲我的節點項目,nginx的(v1.5.11),我有succesfull重定向域到網上,但是我需要使用3000端口,所以現在,我的網站位置看起來像http://www.myweb.com:3000/
,當然,我想保留只有「www.myweb.com」部分是這樣的:http://www.myweb.com/
無法隱藏位置的端口nginx的
我有搜索和嘗試許多配置,但沒有人似乎爲我工作,我不知道爲什麼,這是我的地方nginx.conf文件,我想http://localhost:8000/
文字更改爲http://myName/
文本,請記住,重定向的工作,我只是想「躲」上的位置的端口。
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 8000;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location/{
proxy_pass http://localhost:8000/;
proxy_redirect http://localhost:8000/ http://myName/;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
pd。我試圖修復它我本地的Windows 8機器上,但如果需要其他的操作系統,我的遠程服務器工作在Ubuntu 12.04 LTS
謝謝大家。
看來你的proxy_pass指向同一本地主機:8000,你的服務器監聽。 將監聽端口更改爲80。 – liepumartins