码迷,mamicode.com
首页 > 其他好文 > 详细

nginx使用

时间:2019-05-13 14:08:59      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:pat   local   cal   htm   需要   rip   star   header   exe   

1、nginx压缩包解压

2、启动:

  方法1:打开目录中的nginx.exe即可启动nginx服务。

  方法2:cmd中  cd D:\nginx\  进入目录,然后 start nginx。

3、配置站点:

  配置文件:conf/nginx.conf

  添加站点:在server {}同级别添加新的server {},格式如下:

server {
        listen       10005;
        server_name  localhost;
        # 目录配置
        location / {
            root   D:/beginner/5.GW-monitor/web;
            index  index.html index.htm;
            # 显示目录文件
            autoindex on;
        }
        # 添加反向代理
        location /gfyun-omls-web/ {
            index  proxy_set_header Host $host;
            index  proxy_set_header X-Real-IP $remote_addr;
            index  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass  http://192.168.1.100:8080/gfyun-omls-web/;
            # proxy_cookie_path /gfyun-omls-web /gfy/api;
        }
    }

4、重启服务:

  cmd中在nginx目录 nginx -s reload 【修改配置文件后需要重启】

5、退出nginx服务:  

  nginx -s stop  stop表示立即停止nginx,不保存相关信息
  nginx -s quit  quit表示正常退出nginx,并保存相关信息

  

  

 

nginx使用

标签:pat   local   cal   htm   需要   rip   star   header   exe   

原文地址:https://www.cnblogs.com/lstrive/p/10855916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!