系统相关
首页 > 系统相关> > Nginx列目录文件

Nginx列目录文件

作者:互联网

server {
                listen 80;
                server_name aaa.bbb.com;
                access_log logs/aaa.access.log combined;
                root /var/;
                location /css/ {
                        autoindex on;
                        autoindex_exact_size off;
                        autoindex_localtime on;
                }
}

 

标签:文件,aaa,log,autoindex,server,access,Nginx,目录,logs
来源: https://www.cnblogs.com/codeit/p/15610615.html