最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
nginx编译参数步骤详解
时间:2022-06-30 18:45:55 编辑:袖梨 来源:一聚教程网
代码如下 | 复制代码 |
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_gzip_static_module --with-pcre=/root/pcre-8.12/ --add-module=/root/ngx_http_substitutions_filter_module-master --add-module=/root/ngx_cache_purge-2.1 --add-module=/root/ngx_slowfs_cache-1.10 |
ngx_http_substitutions_filter_module做字符替换之用。
ngx_cache_purge清除缓存之用。
ngx_slowfs_cache缓存之用
记录下nginx的conf字段:
代码如下 | 复制代码 |
slowfs_cache_path /var/cache/web levels=1:2 keys_zone=fastcache:10m inactive=1d max_size=30m; slowfs_temp_path /var/cache/web 1 2; server { listen 80; server_name 111com.net; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/www.111com.net; include typecho.conf; location ~ .*.(php|php5)?$ { try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fcgi.conf; } location ~ /purge(/.*) { allow all; slowfs_cache_purge fastcache $is_args$args; } location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$ { slowfs_cache fastcache; slowfs_cache_key $is_args$args; slowfs_cache_valid 1d; add_header X-Cache '$slowfs_cache_status from $host'; expires max; } location ~ .*.(css|js)?$ { expires 12h; } access_log /home/wwwlogs/111com.net.log 111com.net; } |
相关文章
- 沙丘觉醒怎么饮血快速解渴 饮血解渴方法介绍 07-15
- 最终幻想14水晶世界居格斯怎么打 强腕的居格斯打法分享 07-15
- 沙丘觉醒怎么更改哈克南厄崔迪家族阵营 阵营转换方法 07-15
- 欧易app注册下载 欧易app交易所v6.7.0 07-15
- 剑星乌龙谷物茶饮料罐在哪 乌龙谷物茶饮料罐收集位置一览 07-15
- 幻兽帕鲁熔岩兽出没地点 帕鲁熔岩兽捕捉位置介绍 07-15