您的位置:首页 > 运维架构 > Nginx

nginx 文件(路径)映射

2020-06-05 11:21 169 查看

服务器中
/game/gate/log/ *.log /game/gate/log/ .txt
以 http://xxxx.com/log/.log 访问

http{

......

server {
listen   80;
location /log {
autoindex on;
charset utf-8;
root /game/gate/;
}
}

}

charset utf-8; 解决中文乱码
autoindex on; 目录索引

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: