如何实现Nginx本地搭载,及前后端交互。

1、本地环境准备

  • 1、下载Nginx,安装到本地。具体安装可参考百度。下载地址nginx: 下载

安装到本地,打开具体文件如下图。

2、前端工作

  • 1、需要前端人员将前端代码文件压缩后给后端开发人员。一般打包的前端文件命名是dist。
  • 2、解压dist文件到本地。可以现在本地建好前端web文件夹。如何前端文件有多个可以根据实际需求建多个文件夹。如图实例。在D盘下建manage_web文件夹,又在下面建两个子文件夹。

将解压好的dist文件放在其中一个文件夹中。解压后具体文件如下。

 

3、后端工作内容。

  • 1、首先,在本地Nginx文件中打开config文件。如图。
  • 2、打开config文件后,修改里面的配置。具体如下。下代码包含如何搭载多个端口配置。
  • 
    #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 {
            #监听端口,可改,也可以不改,即浏览器访问时的端口号。server_name,访问名称,
            可改,可不改。
            listen       80;
            server_name  localhost;
    
            #charset koi8-r;
    
            #access_log  logs/host.access.log  main;
    
            #必须配置,该location{}代码配置的是在本地的前端页面路径,具体路径要到index页面下。
            location / {
                          #前端index页面路径(本地路径)
                          root   D:/manage_web/mangae/dist/dist;
                          index  index.html index.htm;
                    }
            #必须配置 该location{}为配置后端项目运行路径,即Nginx需要代理的路径;
            /rights-cms-api/是配置文件XML中 servlet:context-path: /rights-cms-api (为自己项目路径的前缀)
            location /rights-cms-api/{
                     proxy_set_header Host $http_host;
                     proxy_set_header X-Real-IP $remote_addr;        
                     proxy_set_header REMOTE-HOST $remote_addr;        
                     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;        
                             proxy_read_timeout  3600;
                             #需要代理的 本地项目启动地址
                     proxy_pass http://localhost:8096/rights-cms-api/;        
             }                
    
    
            #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;
            }
                    
                            
    
            # proxy the PHP scripts to Apache listening on 127.0.0.1:80
            #
            #location ~ \.php$ {
            #    proxy_pass   http://127.0.0.1;
            #}
    
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            #location ~ \.php$ {
            #    root           html;
            #    fastcgi_pass   127.0.0.1:9000;
            #    fastcgi_index  index.php;
            #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            #    include        fastcgi_params;
            #}
    
            # deny access to .htaccess files, if Apache's document root
            # concurs with nginx's one
            #
            #location ~ /\.ht {
            #    deny  all;
            #}
        }
            #搭载多个配置如下。具体意思如上。
             server {
            listen       900;
            server_name  localhost;
    
            #charset koi8-r;
    
            #access_log  logs/host.access.log  main;
    
            location / {
                          root   D:/manage_web/web/dist/dist;
                          index  index.html index.htm;
                    }
                    
                    location /rights-core-api/{
                     proxy_set_header Host $http_host;
                     proxy_set_header X-Real-IP $remote_addr;        
                     proxy_set_header REMOTE-HOST $remote_addr;        
                     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;        
                             proxy_read_timeout  3600;
                     proxy_pass http://localhost:9098/rights-core-api/;        
             }                
    
    
            #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;
            }
                    
                            
    
            # proxy the PHP scripts to Apache listening on 127.0.0.1:80
            #
            #location ~ \.php$ {
            #    proxy_pass   http://127.0.0.1;
            #}
    
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            #location ~ \.php$ {
            #    root           html;
            #    fastcgi_pass   127.0.0.1:9000;
            #    fastcgi_index  index.php;
            #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            #    include        fastcgi_params;
            #}
    
            # deny access to .htaccess files, if Apache's document root
            # concurs with nginx's one
            #
            #location ~ /\.ht {
            #    deny  all;
            #}
        }
    
    
        # another virtual host using mix of IP-, name-, and port-based configuration
        #
        #server {
        #    listen       8000;
        #    listen       somename:8080;
        #    server_name  somename  alias  another.alias;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    
        # HTTPS server
        #
        #server {
        #    listen       443 ssl;
        #    server_name  localhost;
    
        #    ssl_certificate      cert.pem;
        #    ssl_certificate_key  cert.key;
    
        #    ssl_session_cache    shared:SSL:1m;
        #    ssl_session_timeout  5m;
    
        #    ssl_ciphers  HIGH:!aNULL:!MD5;
        #    ssl_prefer_server_ciphers  on;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    }
  • 3、在idea上配置Nginx。如图。
  •  

按下图在nginx文件中找到如下文件,放在相应位置。

配置完成后,可以在idea上启动Nginx。

  • 4、最后idea启动nginx的config文件里面的配置的项目服务。在谷歌浏览器上访问nginx的config文件中的地址。http://localhost:80 即可以实现前后端交互。

 

谢谢!

  • 1
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
实现前后端反向代理,可以通过修改nginx配置文件nginx.conf来实现。首先,找到nginx.conf文件,默认在/usr/local/nginx/conf目录下。然后,将配置文件中的server块的内容做以下修改: ``` server { listen 80; #监听端口 server_name example.com; #将example.com替换为你的域名 location / { proxy_pass http://backend_server; #将backend_server替换为后端服务器的地址 proxy_set_header Host $host; #设置请求头的Host字段为当前主机 proxy_set_header X-Real-IP $remote_addr; #设置请求头的X-Real-IP字段为客户端真实IP地址 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #设置请求头的X-Forwarded-For字段为客户端真实IP地址 } } ``` 以上配置将请求转发给后端服务器,并将从后端服务器得到的结果返回给客户端。使用反向代理可以隐藏真实服务器的IP地址,对外表现为一个反向代理服务器。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [使用nginx实现反向代理](https://blog.csdn.net/weixin_48016395/article/details/123928470)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [Nginx反向代理实现前后端分离](https://blog.csdn.net/weixin_42842539/article/details/105821574)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值