Nginx 配置訪問 swagger 頁面

GaoYanbing發表於2024-03-21

假設SpringBoot 的應用部署在 http://192.168.1.15:8093 上, nginx.conf配置檔案裡面增加如下配置

location ~^/swagger/(.*)
{
proxy_redirect off;
# proxy_set_header Host $host;
proxy_set_header Host $host:$server_port; #新增:$server_port
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://192.168.1.15:8093/$1;
}
1
2
3
4
5
6
7
8
9
重新載入 nginx 配置

./nginx -s reload
1
訪問 swagger 的地址為:

http://192.168.1.15:8093/swagger/swagger-ui.html
————————————————

版權宣告:本文為博主原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處連結和本宣告。

原文連結:https://blog.csdn.net/gzt19881123/article/details/105486882

相關文章