nginx缓存
http模块:
proxy_cache_path /tmp/cache levels=1:2 keys_zone=www:500m inactive=10m max_size=200m; 设置缓存的路径和其他参数
Debian安装nginx时,如果/etc/nginx/有site-enabled这个目录,就去到nginx.conf文件中注释掉这一行
#proxy.conf配置文件
server {
listen 80;
server_name www.chinaskills.cn;
location / {
proxy_pass https://www.sdskills.com;
proxy_cache cache;
add_header X-Cache $upstream_cache_status;
proxy_cache_valid any 1m;
# 到这里是 cache 配置
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# 这个是下一个问,要让后端显示实际IP用的
}
}
#编辑nginx.conf文件
[root@rserver nginx]# vim /etc/nginx/nginx.conf
#在http模块中添加下面这句话
http {
proxy_cache_path /tmp/cache levels=1:2 keys_zone=www:500m inactive=10m;
#建立缓存目录
mkdir /tmp/cache
#nginx -t查看文件有没有错误
[root@rserver nginx]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
#nginx -s reload 重启nginx
[root@rserver nginx]# nginx -s reload
[root@rserver nginx]#
直接用浏览器访问www.chinaskills.cn是访问不通的,可以先在Server01起一个简单的环境
#首先在/etc/hosts文件中添加一条记录
172.16.100.201 www.chinaskills.cn
#然后在Server01安装并启动httpd,然后在Rserver用浏览器打开www.chinaskills.cn就弹出Server01的apache页面了
#后端apache配置
[root@server01 httpd]# vim /etc/httpd/conf/httpd.conf
#196行 去掉开头,去掉结尾
"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
[root@server01 httpd]# vim /etc/httpd/conf.d/ssl.conf
#在212行添加
CustomLog logs/ssl_request_log \
"%a %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""
# 日志格式也要改下
# 从 httpd.conf 复制过来,把前面的 %h 改成 %a
# 让后端日志能显示实际 IP
RemoteIPHeader X-Forwarded-For
RemoteIPInternalProxy 172.16.100.254
# 加上这行
[root@server01 httpd]# systemctl restart httpd
|