TANKENQI.cn

May 27, 2024

Nginx搭建静态资源服务器

Nginx2.1 min to read

1 nginx.conf文件中配置

user  root; # 启动用户worker_processes  1;events {    worker_connections  1024;}http {    include       mime.types;    default_type  application/octet-stream;    sendfile        on;    keepalive_timeout  65;    gzip  on; # 打开gzip压缩,可以减少带宽    server {        listen       80; # 1.指定端口        server_name  dlib; # 2.服务名        location /data/ {            alias /home/data/; # 3.指定静态文件目录            autoindex on; # 自动索引        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }    }}
user  root; # 启动用户worker_processes  1;events {    worker_connections  1024;}http {    include       mime.types;    default_type  application/octet-stream;    sendfile        on;    keepalive_timeout  65;    gzip  on; # 打开gzip压缩,可以减少带宽    server {        listen       80; # 1.指定端口        server_name  dlib; # 2.服务名        location /data/ {            root /home/; # 3.指定静态文件目录            autoindex on; # 自动索引        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }    }}
nginx -s reload

2 二者区别

在Nginx配置中,aliasroot 是两个用于指定文件系统路径的指令,但它们在用法和行为上有一些重要的区别:

nginxCopy codelocation /images/ {    alias /var/www/images/;}

在上述示例中,如果访问 http://yourdomain.com/images/pic.jpg,Nginx会查找 /var/www/images/pic.jpg

nginxCopy codelocation /data/ {    root /var/www/;}

在上述示例中,如果访问 http://yourdomain.com/data/file.txt,Nginx会查找 /var/www/data/file.txt

总结:alias 用于创建虚拟目录,可以将 URL 路径与文件系统中的不同路径关联,而 root 用于将 URL 路径直接映射到文件系统中的目录。你可以根据需要选择合适的指令来配置 Nginx 以满足你的要求。