Nginx反向代理配置(解决跨域问题)

什么是跨域?

跨域,指的是浏览器不能执行其他网站的脚本。它是由浏览器的同源策略造成的,是浏览器对 JavaScript 施加的安全限制。

实际开发过程中表现为,如果本地的Html代码未提交到服务器,本地是不能直接调用服务器 API 获取数据的。

Nginx

Nginx 是一个高性能的 HTTP 和反向代理服务器,也是一个IMAP/POP3/SMTP 服务器。其特点是占有内存少,并发能力强,事实上 nginx 的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用 nginx 网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。

反向代理

反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。

配置步骤
  1. 从官网下载nginx;
  2. 解压后,找到conf文件夹下的nginx.conf文件,即配置文件;
  3. 用文本编辑器打开nginx.conf文件,找到http节点下的server节点,参照下面配置;

配置文件

    listen       80;
    # 设置本机ip
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;
    client_max_body_size 20m;

    location / {
        root   html;
        index  index.html index.htm;
        client_max_body_size 20m;
    }

    location /apis {
        if ($request_method = 'OPTIONS') { 
            add_header 'Access-Control-Allow-Origin' '*';
            add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS';
            #
            # Custom headers and headers various browsers *should* be OK with but aren't
            #
            add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
            #
            # Tell client that this pre-flight info is valid for 20 days
            #
            add_header 'Access-Control-Max-Age' 1728000;
            add_header 'Content-Type' 'text/plain charset=UTF-8';
            add_header 'Content-Length' 0;
            return 204;
        }


        if ($request_method = 'POST') {
            add_header 'Access-Control-Allow-Origin' *; 
            add_header 'Access-Control-Allow-Credentials' 'true'; 
            add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; 
            add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
        }


        if ($request_method = 'GET') {
            add_header 'Access-Control-Allow-Origin' *; 
            add_header 'Access-Control-Allow-Credentials' 'true'; 
            add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; 
            add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
        }
        # 匹配apis之后的路径和参数
        rewrite  ^.+apis/?(.*)$ /$1 break;
        include  uwsgi_params;
        # 实际调用的API
     proxy_pass http://www.test.cn;

按照上述配置,如果要调用 http://www.test.cn/order/check API 本地直接调用 http://localhost/apis/order/check 即可。

保存后双击nginx.exe文件即可运行服务器。

nginx简单命令:

  • 启动服务器 start nginx
  • 停止服务器 nginx -s stop 或 nginx -s quit
  • 重新加载 nginx -s reload

你可能感兴趣的:(Nginx反向代理配置(解决跨域问题))