Nginx 动静分离

本文最后更新于:2024年3月18日 凌晨

Nginx 动静分离

图片服务器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
server {
listen 80;
listen [::]:80;
server_name static.tally.ltd;
location / {
expires 24h;
alias /deploy/static/;
autoindex on; # 打开浏览功能。
}

error_page 404 /404.html;
location = /404.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!