1. 程式人生 > >idea+springboot+linux+nginx部署專案遇到的問題,403、404、favicon.ico等

idea+springboot+linux+nginx部署專案遇到的問題,403、404、favicon.ico等

1,訪問靜態資源403

修改nginx.conf檔案頭為:user root

2,訪問靜態資源404

同樣是在nginx.conf檔案修改

如果location的配置是 location /static ,類似這樣的子路徑,配置如下:

root /webroot/static; 

alias /webroot/static/; 

注意:alias後面多一個/

3,網站小圖示

首先關閉springboot的預設圖示

mvc:
  favicon:
    enabled: false

然後在static目錄下放置favicon.ico

<link rel="Bookmark" href="/static/favicon.ico" >
<link rel="Shortcut Icon" href="/static/favicon.ico" />

其他:linux部署專案,許可權和使用者問題需要留意,很多問題都出在這個上面