app.md
318 Bytes
nginx 配置 本地调试
# hype
server {
listen 80;
server_name test.feature.yoho.cn;
location / {
# 项目根目录
root /Users/guoshuai/code/work/yoho/yoho-hype-magzine;
add_header "X-UA-Compatible" "IE=Edge, chrome=1";
}
}