文章詳情頁
服務器上nginx無法訪問html的配置問題
瀏覽:259日期:2023-08-14 09:45:10
問題描述

服務器上 /www/cms/production/current/dist 下有index.html
nginx配置:
server { listen 3002; root /www/cms/production/current/dist; index index.html; server_name xxx.xxx.com; location / { try_files $uri $uri/ /index.html; } location /api/ { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forward-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Nginx-Proxy true; proxy_pass http://127.0.0.1:3000/api; proxy_redirect off; }}
為何通過xxx.xxx.com只顯示了一個welcome to nginx的頁面,顯示不了我的index.html呢?
問題解答
回答1:端口寫錯了,已解決
標簽:
HTML
上一條:vue.js - weex 沒有背景圖片屬性怎么辦?下一條:javascript - mongodb線上環境報錯Db.prototype.authenticate method will...
相關文章:
1. 運行python程序時出現“應用程序發生異常”的內存錯誤?2. 我在導入模板資源時遇到無法顯示的問題,請老師解答下3. macos - 無法source activate python274. javascript - 打算寫一個c++的node圖像處理模塊,有沒有推薦的c++圖片處理庫?5. html5 - 前端面試碰到了一個緩存數據的問題,來論壇上請教一下6. css - 移動端 盒子內加overflow-y:scroll后 字體會變大7. PHPExcel表格導入數據庫怎么導入8. java - butterknife怎么綁定多個view9. css3 讓圖片變成灰色(filter),但針對IE11瀏覽器無效10. java - 同步/異步與阻塞/非阻塞之間的差異具體是什么?
排行榜

網公網安備