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

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

項目都是html格式的文件,個人項目路徑:E:\javaservice\nginx-1.15.7\htmljava

 

 

assets:靜態資源nginx

html:站點文件jsp

upload:上傳的文件server

 

如圖htm

html:站點文件blog

 

 

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/get

相關文章
相關標籤/搜索