nginx配置靜態資源:配置絕對路徑


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/

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM