location
中配置如下
location / {
# 允许访问文件目录
autoindex on;
# 按MB、GB展示文件大小, 配置on则按bytes展示文件大小
autoindex_exact_size off;
# 使用本地时间
autoindex_localtime on;
# 文件路径
root /www/wwwroot/www.walmart.com;
}
在server
中配置编码
charset utf-8,gbk;
完整配置
server {
listen 80;
server_name www.walmart.com;
root /www/wwwroot/www.walmart.com;
index index.html index.htm default.php default.htm default.html;
#charset koi8-r;
gzip on;
gzip_buffers 32 4K;
gzip_comp_level 6;
gzip_min_length 2K;
# 允许消息头带_下划线
underscores_in_headers on;
access_log logs/walmart.access.log combined;
charset utf-8,gbk;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
root /www/wwwroot/www.walmart.com;
index index.html index.htm;
}
}
最终效果
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。