当前位置:  操作系统/服务器>linux
本页文章导读:
    ▪nginx基础配置说明一则      nginx基础配置说明一则,有需要的朋友可以参考下。 代码如下:     user  nfsnobody nfsnobody;  #使用的用户和组      worker_processes 8;  #指定工作衍生进程数      error_log /usr/local/web/nginx.0.8.........
    ▪Nginx 设置静态文件缓存时间      Nginx 设置静态文件缓存时间,如下所示:   代码如下: location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$  {    expires      30d;  }        location ~ .*\.(js|css)?$  {    expires      1h;  }    说.........
    ▪nginx缓存本地静态文件      使用nginx缓存本地静态文件,由同一个nginx来解析。 使用if不能嵌套,所以只能使用本地的IP跳转一下,我的cache使用的nginx命名cache_one配置如下。 如果本地跳转有问题可以再hosts表中修改一下.........

[1]nginx基础配置说明一则
    来源: 互联网  发布时间: 2013-12-24

nginx基础配置说明一则,有需要的朋友可以参考下。

代码如下:

    user  nfsnobody nfsnobody;  #使用的用户和组 
    worker_processes 8;  #指定工作衍生进程数 
    error_log /usr/local/web/nginx.0.8.15/nginx_error.log  crit; #日志记录的文件地址 
    pid  /usr/local/web/nginx.0.8.15/nginx.pid; #进行PID存放的路劲 
    worker_rlimit_nofile 65535;  #最大文件描述符 
    events 
    { 
      use epoll; #使用事件模型,一般Linux2.6+使用epoll模型 
      worker_connections 65535; #最大链接数 
    } 
    http 
    { 
      include      mime.types;    
      default_type application/octet-stream; 
      server_names_hash_bucket_size 128; #hash_table 
      client_header_buffer_size 32k; #请求头部的缓冲大小 
      large_client_header_buffers 4 32k; #最大的请求头部缓冲大小 
      client_max_body_size 8m; #客户端最大请求 8M 
      sendfile on; #传输文件 
      tcp_nopush    on; 
      keepalive_timeout 60; #60秒超时 
      tcp_nodelay on; 
      fastcgi_connect_timeout 300;#以下fastcgi模块配置 
      fastcgi_send_timeout 300; 
      fastcgi_read_timeout 300; 
      fastcgi_buffer_size 64k; 
      fastcgi_buffers 4 64k; 
      fastcgi_busy_buffers_size 128k; 
      fastcgi_temp_file_write_size 128k; 
      gzip on; #以下gzip模块配置 
      gzip_min_length  1k; 
      gzip_buffers     4 16k; 
      gzip_http_version 1.0; 
      gzip_comp_level 2; 
      gzip_types       text/plain application/x-javascript text/css application/xml; 
      gzip_vary on; 
      server 
      { 
        listen      80;  #监听的端口 
        server_name www.test2.com; #host名称 
        index index.html index.htm index.php; #默认访问的首页 
    root  /usr/local/web/www/; #文件目录 
    error_page 404 403  http://admin.test.com/404.htm; #默认404页面 
        location ~ .*\.(php|php5)?$   #php cgi模块 
        { 
          #fastcgi_pass  unix:/tmp/php-cgi.sock; 
          fastcgi_pass  127.0.0.1:9000; 
          fastcgi_index index.php; 
          include fcgi.conf; 
        } 
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ 
    { 
          expires      30d; 
        } 
       location /       #URL重写模块 
        { 
          index index.php; 
          if (!-f $request_filename){ 
                  rewrite (.*) /admin.php; 
              } 
          try_files $uri $uri/ /index.html; 
        } 
        location ~ .*\.(js|css)?$ 
        { 
          expires      1h; 
        } 
        #以下是log模块-记录nginx日志 
        log_format access  '$remote_addr - $remote_user [$time_local] "$request" ' 
                  '$status $body_bytes_sent "$http_referer" ' 
                  '"$http_user_agent" $http_x_forwarded_for'; 
        access_log /usr/local/web/nginx.0.8.15/logs/access.log  access; 
          } 
    } 

转载请注明出处: http://www./article/5653.com

    
[2]Nginx 设置静态文件缓存时间
    来源: 互联网  发布时间: 2013-12-24

Nginx 设置静态文件缓存时间,如下所示:
 

代码如下:
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ 

  expires      30d; 

     
location ~ .*\.(js|css)?$ 

  expires      1h; 

 

说明:
图片默认缓存30天
JS和CSS默认缓存1小时

大家可以根据需求设置Nginx对静态文件的缓存时间。

转载请注明出处: http://www./article/5652.com


    
[3]nginx缓存本地静态文件
    来源: 互联网  发布时间: 2013-12-24

使用nginx缓存本地静态文件,由同一个nginx来解析。
使用if不能嵌套,所以只能使用本地的IP跳转一下,我的cache使用的nginx命名cache_one配置如下。
如果本地跳转有问题可以再hosts表中修改一下指向。
##---pic
 

代码如下:
upstream  local_img {
         server localhost:81;
    }
 server{
     listen       81;
     server_name 127.0.0.1;
     location / {
             root /image/;
             client_max_body_size   10m;
             access_log off;
             autoindex off;
             }
 }
server {
     listen       80;
     server_name img.test.com;
     proxy_cache cache_one;
     location / {
             proxy_redirect off;
             proxy_cache_valid 200 304 12h;
             proxy_cache_valid 301 302 1m;
             proxy_cache_key $host$uri$is_args$args;
             add_header X-Cache $upstream_cache_status;
             proxy_set_header Host $host;
             proxy_set_header X-Forwarded-For $remote_addr;
             proxy_pass http://local_img;
             access_log off;
             }
 }

    
最新技术文章:
▪linux系统中的列出敏感用户的脚本代码
▪a10 config backup for aXAPI
▪一键备份gitolite服务器的Shell脚本
▪nagios 分发文件实现代码
▪阿里云云服务器Linux系统更新yum源Shell脚本
▪一个监控LINUX目录和文件变化的Shell脚本分享
▪Linux下实现SSH免密码登录和实现秘钥的管理、...
▪Shell正则表达式之grep、sed、awk实操笔记
▪3个备份系统文件并邮件发送的Shell脚本分享
▪CentOS 6.3下给PHP添加mssql扩展模块教程
▪监控网站是否可以正常打开的Shell脚本分享
▪shell脚本编程之if语句学习笔记
▪shell脚本编程之循环语句学习笔记
▪shell脚本编程之case语句学习笔记
▪Shell脚本实现的阳历转农历代码分享
▪Shell脚本实现复制文件到多台服务器的代码分...
▪Shell脚本实现批量下载网络图片代码分享
▪Shell脚本实现检测文件是否被修改过代码分享
▪Shell脚本数组用法小结
▪Shell脚本批量重命名文件后缀的3种实现
▪C语言实现的ls命令源码分享
▪Linux下查找后门程序 CentOS 查后门程序的shell脚...
▪Shell 函数参数
▪linux shell 自定义函数方法(定义、返回值、变...
▪Shell实现判断进程是否存在并重新启动脚本分...
▪Shell脚本break和continue命令简明教程
▪Shell脚本函数定义和函数参数
▪让代码整洁、过程清晰的BASH Shell编程技巧
▪shell常用重定向实例讲解
▪awk中RS、ORS、FS、OFS的区别和联系小结
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3