本文介绍: 若依移动端的项目整合了uview开源ui框架配置后端请求接口基本路径地址打包复现nginx下: 增加了网站:8083端口的, 网站目录nginx/html下的子目录newxss配置跨域转发 /apixss多个后台服务器的话,增加跨域配置如 /secondapi, 把它们写在8083端口server{}对象里。nginx.conf重启nginx: nginxs reload,就可以正常访问了。遇到404,是跨域路径匹配到,405是匹配路径,但是路径错。排除:服务器中,有两

 若依移动端的项目整合了uview开源ui框架

配置后端请求接口基本路径地址

打包复现nginx下:

之后就可以愉快的使用这个端口了。如下,使用他来指向一个网站项目

nginx配置站点api代理 

可以运行起来了。 

安装个稳定版本的:nginx-1.24.0
部署配置

增加了网站:8083端口的, 网站目录nginx/html下的子目录newxss

配置跨域转发   /apixss

多个后台服务器的话,增加跨域配置如 /secondapi, 把它们写在8083端口的server{}对象里。

 location /secondapi {
                  # 后端的真实接口 http://10086.whhkj.com/webapi
                  proxy_pass http://10087.whhkj.com/webapi;

            }

nginx.conf


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

   
    }
     server {
        # 监听端口号
        listen       8083;
        # 服务名称 生产环境修改公网ip 如 47.105.134.120
        server_name  192.168.10.101;
        # 配置根目录地址是以 nginx 下的 html 文件夹根目录查找root html;
        # 配置默认主页显示 比如 47.105.134.120:8080 显示index 页面
        location / {
            root html/newxss;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html;
        }

         # 关键步骤这里表示将所有的 http://192.168.7.8:8888/teamnote/api/ 开头的请求转发到下面 proxy_pass 指定链接中
            # http://192.168.10.101/xss/ 开头的请求都会转发到下面proxy_pass

            location /apixss {
                  # 后端的真实接口 http://10086.whhkj.com/webapi
                  proxy_pass http://10086.whhkj.com/webapi;

            }

          location /secondapi {
                  # 后端的真实接口 http://10086.whhkj.com/webapi
                  proxy_pass http://10087.whhkj.com/webapi;

            }
        }
  
}

重启nginx:   nginx -s reload,就可以正常访问了。

遇到404,是跨域路径匹配到,405是匹配到路径,但是路径错。

部署到阿里云nginx

阿里云 linux 的nginx 配置uni-app的前端项目vue_Lan.W的博客-CSDN博客


一直404,405 排除:

1. 服务器中,有两个nginx,有可能造成跨域失效。

2. 多次改配置,从网上拷贝一些不适合的配置导致,接口路径什么都对上就是404,405,那么,把整个nginx.conf删除,重新拷贝一个干净的过来,再做配置。

原文地址:https://blog.csdn.net/LlanyW/article/details/132777916

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_13437.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注