zoukankan      html  css  js  c++  java
  • 配置 http *

    [root@nginx ~]# cd /etc/nginx/

    1

    [root@nginx nginx]# cp nginx.conf nginx.conf.bak #备份一个原配置文件

    2

    [root@nginx nginx]# vim nginx.conf

    3

    location / {

    4

    proxy_pass     http://192.168.18.201;

    5

    }

    6

    指令说明:proxy_pass

    语法:proxy_pass URL

    默认值:no

    使用字段:location, location 中的 if 字段 这个指令设置被代理服务器的地址和被映射的 URI,地址可以使用主机名或 IP 加端 口号的形式,例如:proxy_pass http://localhost:8000/uri/;

    8.重新加载一下配置文件

    [root@nginx ~]# service nginx reload

    1  nginx: the configuration file /etc/nginx/nginx.conf syntax is ok

    2  nginx: configuration file /etc/nginx/nginx.conf test is successful

    3  重新载

    4  入 nginx:

    [确定]

  • 相关阅读:
    Rate Control Mode
    帝国的困境:80-20法则
    ARM NEON 64bit 查找表替换
    Video Brightness Enhancement
    HDR(High Dynamic Range)
    C++ C++
    Machine Learning
    图像处理
    Facial landmark detection
    git
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11333417.html
Copyright © 2011-2022 走看看