nginx和apache一样都提供了多端口映射成80端口的配置方式。
打开nginx的配置文件nginx.conf在http下的server后面添加
server{
listen 80; #监听80端口
server_name xxx.xxx; #域名
location / {
proxy_redirect off;
proxy_pass http://localhost:8788; #代理到此地址
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; #用于获取真实IP
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #用于获取真实IP
}
通用启动命令 ...../nginx/sbin/nginx –c …/nginx/conf/nginx.conf
启动nginx: start nginx
重启 ./nginx –s reload
配置步骤:配置文件conf/conf.d/short_url.inc(加入以上代码)
引入conf/nginx.conf中 include conf.d/short_url.inc
重启其他