时间:2021-05-19
自动列出目录配置:
下载过开源软件的都知道,一个很简单的页面列出了所有版本的源码包,这就是开启了自动列出目录
如下配置,在虚拟主机location / {……}目录控制中配置自动列出目录:
浏览器本地缓存设置:
浏览器是为了加速浏览,浏览器在用户磁盘上对最近请求过的文件进行存储,当访问者再次请求这个页面,
浏览器可以从本地磁盘显示文件,以达到加速浏览的效果,节约了网络资源,提高了网络效率
关键字: expires
默认值: off
作用域: http,server.location
用途: 通过expires指令控制http应答中的”Expires”和”Cache-Control”的头信息
配置项:
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h; }
配置虚拟主机:
nginx可以配置多种类型的虚拟主机,基于ip的 基于域名的 基于端口的,
简单一句话说就是不同ip相同端口,不同端口相同ip or域名,不同域名相同端口
下面是基于相同域名的虚拟主机配置文件:
server { listen 80 default; server_name ; index index.html index.htm index.php; root /alidata/www/; # wordpress 伪静态规则 location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; }} rewrite /wp-admin$ $scheme://$host$uri/ permanent; location ~ .*\.(php|php5)?$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h; } access_log /alidata/log/nginx/access/.log;} server { listen 80 default; server_name www.pyyw.net; index index.html index.htm index.php; root /alidata/www/www.pyyw.net; # wordpress 伪静态规则 location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.php; }} rewrite /wp-admin$ $scheme://$host$uri/ permanent; location ~ .*\.(php|php5)?$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 1h; } access_log /alidata/log/nginx/access/www.pyyw.net.log;}声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
浏览器缓存浏览器缓存分为两种类型:强缓存:也称为本地缓存,不向服务器发送请求,直接使用客户端本地缓存数据协商缓存:也称304缓存,向服务器发送请求,由服务器判断
服务器是网络服务中比较常见的设备之一,很多网站搭建都会用到服务器,现在市场上有服务器虚拟机,服务器虚拟机是什么意思?服务器虚拟机有什么作用?下面大家就来听听的相
作为一名程序员,一提到“缓存”你很容易联想到“客户端(浏览器缓存)”和“服务器缓存”。客户端缓存是存在浏览者电脑硬盘上的,即浏览器临时文件夹,而服务器缓存是存在
现如今,许多网站都会安装服务器,同时为了扩充服务器的内存,增加网站的功能,往往会在服务器上搭建虚拟机。那么虚拟机服务器搭建的方法有哪些?二者有什么关系?为大家讲
云服务器是在多组物理服务器集群上,经过虚拟化抽象而来的资源,云服务器是一种虚拟机,更准确的说是部署在集群云平台中的虚拟机,用户可以通过“硅云管理控制