需求说明:为了不让一般人找到这个站点http://nginx.it.net.cn,所以,就要求通过it.net.cn这个域名进行访问,配置方法如下。 系统nginx安装完成后,进行如下配置。 修改nginx配置文件 (文件目录位于/usr/local/nginx/conf/) 参照如下案例进行修改 server { listen 80; server_name pigpigzhu.com; location / { proxy_pass http://nginx.it.net.cn/; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } 通过如下命令检查配置是否正常: 命令:/usr/local/nginx/sbin/nginx -t 如果显示:the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok configuration file /usr/local/nginx/conf/nginx.conf test is successful 则正常,否则按错误提示修改配置,错误提示会精确到哪一行的。 执行命令使配置生效 命令:kill -HUP `cat /usr/local/nginx/logs/nginx.pid` 如果你的域名解析也生效了的话,应该就可以直接通过顶级域名访问了。 (责任编辑:IT) |