由于本地跑的项目过多,各种端口也记不清,混来混去也比较麻烦,而hosts文件只能映射ip不能映射端口,于是想到了用nginx
在mac/ubuntu下安装比较简单
<pre>brew install nginx
apt-get install nginx
</pre>
就好了
当然nginx是个很强大的东西,我们这边只用到一个最最基本的功能……
(进阶教程见 http://www.cnblogs.com/skynet/p/4146083.html )
然后就开始配置一下
mac中nginx的默认安装路径是 /usr/local/etc/nginx/
ubuntu的是/etc/nginx
编辑 nginx.conf
在http{ …… }中加入映射配置:
<pre>
server {
listen 80;
server_name reach.com;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://127.0.0.1:3000;
break;
}
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
</pre>
启动nginx:
<pre>
mac: sudo nginx
ubuntu: service nginx start
</pre>
然后修改/ets/hosts 加入
<pre>127.0.0.1 reach.com</pre>
然后跑起来3000端口的项目,浏览器输入 reach.com 即可
可以省去记每个项目的端口了
如果每次随机跑项目端口的同学,可以考虑在项目里新建个run.sh 每次只要run一下即可
网友评论