apache和nginx目录浏览设置

今天给朋友的vps搞目录浏览,用来下载资料的,本来挺简单的的东西搞的挺郁闷的。现在线上的东西基本是搞nginx和lighttpd,apache忘的差不多了,搞个简单的目录浏览都要百度,我靠。。。现在直接写成脚本了。

  
  
  
  
  1. sed -i '/Include conf/extra/httpd-vhosts.conf/s/^#//' /etc/httpd/conf/httpd.conf  

  2. cat >>apache/conf/extra/httpd-vhosts.conf <<EOF

  3. <VirtualHost *:80>

  4.      ServerAdmin [email protected]  

  5.      DocumentRoot /var/www/html   

  6.      ServerName www.123.com  

  7.      ServerAlias shop.123.com  

  8.      ErrorLog "logs/123.log" // 日志文件  

  9.      CustomLog "logs/123.log" common // 日志文件  

  10. <Directory "/var/www/html">

  11.         Options +Indexes FollowSymLinks  

  12.         AllowOverride ALL  

  13.         Order allow,deny  

  14.         Allow from all  

  15. </Directory>

  16. </VirtualHost>

  17. EOF

  18. 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后,显示的文件时间为文件的服务器时间

  
  
  
  
  1. server{  

  2. listen 80;  

  3. servername www.A.com;  

  4. autoindex on;  

  5. autoindex_exact_size off;  

  6. autoindex_localtime on;  

  7. root /home/www/;  

你可能感兴趣的:(apache,目录浏览,nginx目录浏览)