sed -i '/Include conf/extra/httpd-vhosts.conf/s/^#//' /etc/httpd/conf/httpd.conf
cat >>apache/conf/extra/httpd-vhosts.conf <<EOF
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/html
ServerName www.123.com
ServerAlias shop.123.com
ErrorLog "logs/123.log" // 日志文件
CustomLog "logs/123.log" common // 日志文件
<Directory "/var/www/html">
Options +Indexes FollowSymLinks
AllowOverride ALL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
EOF
sed -i 's/^/#/' /etc/httpd/conf.d/welcome.conf
nginx默认是不允许列出整个目录的。如需此功能,
打开nginx.conf文件,在location server 或 http段中加入
autoindex on;
另外两个参数最好也加上去:
autoindex_exact_size off;
默认为on,显示出文件的确切大小,单位是bytes。
改为off后,显示出文件的大概大小,单位是kB或者MB或者GB
autoindex_localtime on;
默认为off,显示的文件时间为GMT时间。
改为on后,显示的文件时间为文件的服务器时间
server{
listen 80;
servername www.A.com;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
root /home/www/;
}
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。