這篇文章主要介紹了nginx配置訪問圖片路徑及html靜態(tài)頁面調(diào)取的方法的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇nginx配置訪問圖片路徑及html靜態(tài)頁面調(diào)取的方法文章都會有所收獲,下面我們一起來看看吧。
創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站設(shè)計、成都做網(wǎng)站與策劃設(shè)計,岳麓網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:岳麓等地區(qū)。岳麓做網(wǎng)站價格咨詢:13518219792
1.實驗環(huán)境
首先隨便某個路徑下創(chuàng)建相應(yīng)的目錄。如圖下
2.在里面放自定義的html或者圖片。
3.nginx配置
user root; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80;#端口號 server_name localhost;#本機(jī) charset utf-8; #access_log logs/host.access.log main; location ~ .*\.(gif|jpg|jpeg|png)$ { expires 24h; root /home/images/;#指定圖片存放路徑 access_log /usr/local/websrv/nginx-1.9.4/logs/images.log;#日志存放路徑 proxy_store on; proxy_store_access user:rw group:rw all:rw; proxy_temp_path /home/images/;#圖片訪問路徑 proxy_redirect off; proxy_set_header host 127.0.0.1; client_max_body_size 10m; client_body_buffer_size 1280k; proxy_connect_timeout 900; proxy_send_timeout 900; proxy_read_timeout 900; proxy_buffer_size 40k; proxy_buffers 40 320k; proxy_busy_buffers_size 640k; proxy_temp_file_write_size 640k; if ( !-e $request_filename) { proxy_pass http://127.0.0.1;#默認(rèn)80端口 } } location / { root /home/html; #html訪問路徑 index index.html index2.htm; #html文件名稱 } error_page 404 /404.html;
4.查看編譯是否有出錯,如果沒出錯則設(shè)置成功。
5.訪問nginx則能訪問到訪問的圖片地址。
6.訪問自定義html時。
關(guān)于“nginx配置訪問圖片路徑及html靜態(tài)頁面調(diào)取的方法”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“nginx配置訪問圖片路徑及html靜態(tài)頁面調(diào)取的方法”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。