nginx配置--备忘

做文件服务器

  • 配置
       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 gbk;
      		}
      }
      
posted @ 2022-05-27 14:10  躲在墙角的  阅读(25)  评论(0编辑  收藏  举报