配置nginx代理图片

配置nginx代理图片

好的,让我们通过一个例子来说明rootalias的区别。假设你有以下文件结构:

1
2
3
4
F:/www/nginx_images/
|-- image1.jpg
|-- image2.jpg
|-- image3.jpg

使用 alias 的配置:

1
2
3
4
5
location /image {
alias F:/www/nginx_images;
allow all;
autoindex on;
}

在这种情况下,当用户访问 http://yourdomain/image/image1.jpg 时,Nginx会将请求映射到实际路径 F:/www/nginx_images/image1.jpg


使用 root 的配置:

1
2
3
4
5
location /image {
root F:/www;
allow all;
autoindex on;
}

在这种情况下,当用户访问 http://yourdomain/image/image1.jpg 时,Nginx会将请求映射到实际路径 F:/www/image/image1.jpg

关键区别在于 alias 会将 location 后面的路径(/image)替换为 alias 后面的路径(F:/www/nginx_images),而 root 则会将 location 后面的路径追加到 root 后面的路径(F:/www)。

选择使用哪种方式取决于你的需求。如果你希望 URI 的一部分直接映射到文件系统路径,使用 alias。如果你想要整个 URI 都映射到文件系统路径,使用 root

配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
server {
listen 7899;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {
root html;
index index.html index.htm;
}
# 访问链接:http://localhost:7899/image/a.png
location /image {
alias F:/www/nginx_images;
allow all;
autoindex off; #是否开启目录
}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}