Linux從入門到放棄 windows Nginx 配置 Index of / 索引頁

E:\11-nginx-1.18.0\conf
http {
	server {
		listen			80;
		server_name		localhost;
		root			E:\data;

		location / {
			index index.html index.htm index.php;
		}
	
		# autoindex for nginx
		location ~ ^(.*)/$ {
			autoindex				on;
			autoindex_localtime		on;
			autoindex_exact_size	off;
		}
	
		location ~ \.php$ {
			fastcgi_pass        127.0.0.1:9000;
			fastcgi_index       index.php;
			fastcgi_param       SCRIPT_FILENAME  $document_root$fastcgi_script_name;
			include             fastcgi_params;
		}
	}
}
events {
  worker_connections  1024;  ## Default: 1024
}

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章