做文件服务器
- 配置
server { listen 8888; location / { root /Users/cgengwei/Movies/Videos/; autoindex on; charset utf-8; } }
- windows出现乱码
- 路径或者文件名含中文:(最佳方案)这个时候需要先把windows编码改成utf-8
- 只有文件名含中文:可以把配置中的charset配置改成gbk;
server {
listen 8888;
location / {
root /Users/cgengwei/Movies/Videos/;
autoindex on;
charset utf-8;
}
}