nginx配置靜態資源:配置絕對路徑
項目都是html格式的文件,我的項目路徑:E:\javaservice\nginx-1.15.7\html

assets:靜態資源
html:站點文件
upload:上傳的文件
如圖
html:站點文件

nginx配置:
server {
listen 8081;
server_name localhost;
location /{
root html/html;
index index.html index.htm index.jsp;
}
location /template{
root "E:/javaservice/nginx-1.15.7/html/assets";
}
location /uploads{
root "E:/javaservice/nginx-1.15.7/html";
}
}
項目訪問地址:http://localhost:8081/
