Nginx配置請求轉發到spring-boot-admin

我的spring-boot-admin的實際地址是47.56.190.83:8888,由於47.56.190.83的8888端口沒有放開,所有想使用nginx的8080端口轉發請求,由於通過這種方式相關的Spring-Boot-Admin的css、js、png等靜態資源無法加載,所有通過以下配置即可:

 server {
        listen       8080;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
            proxy_pass http://127.0.0.1:8888/;
        }

        location ~/group[0-9]/ {
                    ngx_fastdfs_module;
        }

        location /apk/ {
             alias /data/service/apk/;
             autoindex on;
             default_type application/octet-stream;
        }

        location ~ .* {
                        proxy_pass http://127.0.0.1:8888;
                        proxy_set_header Host $http_host;
                        proxy_set_header X-Real-IP $remote_addr;
                        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                }



        #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;
        }

        #location /apple-app-site-association/ {
        #    alias /data/wechatios/;
       #     autoindex on;
        #    default_type application/octet-stream;
        #}
        location /apple-app-site-association {
            default_type application/pkcs7-mime;
        }

然後重新啓動nginx,重新訪問http://47.56.190.83:8080,登陸即可看到監控的服務,如下:
在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章