server {
listen 80;
server_name yuying-api.xutongbao.top;
#配置根目录
location / {
proxy_pass http://127.0.0.1:85;
}
access_log logs/access_yuyingapi.log;
error_log logs/access_yuyingapi.log;
}
nginx子域名配置单独的日志文件
阅读 146
2022-08-07
server {
listen 80;
server_name yuying-api.xutongbao.top;
#配置根目录
location / {
proxy_pass http://127.0.0.1:85;
}
access_log logs/access_yuyingapi.log;
error_log logs/access_yuyingapi.log;
}
相关推荐
精彩评论(0)