1. 程式人生 > >nginx配置簡單圖片顯示

nginx配置簡單圖片顯示

第一個server處理請求
server {
    listen       80 default_server;   使用預設的server來處理請求
    server_name  _;   “_”代表拒絕處理主機名不明確的請求

    include /etc/nginx/default.d/*.conf;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }
    location /test {
        root /usr;
    }

    error_page  404
/404.html; location = /404.html { root /usr/share/nginx/html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } } 這個server處理請求/images的請求,並在/images目錄下顯示圖片 server { listen 80; server_name ""; ""使用空作為伺服器的名字 location /images { index
index.html; } location ~* \.(gif|jpg|png)$ { root /images; expires 30d; 圖片的過期時間是30天 } }