rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm yum install -y nginx cd /etc/nginx ps -ef|grep nginx【查看nginx启动】 service nginx start 成功 service nginx reload service nginx restart
那就是开始复制大牛给我的命令:
在nginx目录下,nginx.conf 是主入口文件
其中这一行,include /etc/nginx/conf.d/*.conf 代表加载conf.d文件夹下,以.conf结尾的文件
server { listen 80; server_name hhh-nginx-test; location / { root /www/test; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }
server { listen 80; //配置监听端口 server_name hhh-nginx-test; //配置域名 location / { root /www/test; //服务默认启动目录 index index.html index.htm; //默认访问文件 } error_page 500 502 503 504 /50x.html; // 错误状态码的显示页面,配置后需要重启 location = /50x.html { root /usr/share/nginx/html; } }
4、在阿里云服务器上,打开创建的实例,点击【管理】-【安全组】-【配置规则】-【手动添加】-【目的】输入80/81,源输入0.0.0.0/0 即可通过安全组的配置,允许浏览器访问服务器地址的80端口
5、重启nginx
service nginx restart
server { listen 81; location / { proxy_pass http://www.baidu.com; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }
打开http://121.199.6.246:81 即可跳转到百度,此时 81端口成功代理到百度