欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 > nginx >
  • [nginx] nginx的反向代理缓存 日期:2017-02-14 23:03:33 点击:105 好评:0

    假设有两台物理机,他们分属于不同的域名,以webgame的游戏运营商和开发商为例,运营商需要获取游戏中的排行数据,开发商为了过多对游戏服务器的请求,会在发起请求的机器上设置缓存(或是让运营商定时过来抓取一次数据) nginx设置web缓存,需要用到的相关...

  • [nginx] nginx配置文件防盗链 日期:2017-02-14 23:02:37 点击:135 好评:0

    一般网站为了防止资源被外部链接所盗用,都会使用防盗链来进行处理。思路就是判断请求的域名 如下一个相对完全的示例: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 #VHOST: x.abc...

  • [nginx] nginx location 配置阐述优先级别使用说明-不当可能存在安全隐患 日期:2017-02-14 02:07:53 点击:143 好评:0

    使用nginx 有大半年了,它的高性能,稳定性表现很好。 这里也得到很多人的认可。 其中它的配置,有点像写程序一样,每行命令结尾一个;号,语句块用{}括起来。 配制好,直接nginx -t 检查配制情况,配制成功,直接运行:service nginx reload .服务器没有任何...

  • [nginx] nginx+fastcgi+php安全虚拟主机隔离配制方法 日期:2017-02-14 02:07:22 点击:176 好评:0

    网上关于nginx +fastcgi+php 虚拟主机独立站点安全配置文章很多。 其中关于Nginx+PHP的虚拟主机目录权限控制的探究 文章已经讲的很详细了。方法很多,有设置http://www.cnblogs.com/http://www.cnblogs.com/ 特殊目录的,有通过open_basedir配制独立站点,独...

  • [nginx] nginx: Setup SSL Reverse Proxy (Load Balanced SSL Proxy) 日期:2017-02-10 12:08:59 点击:167 好评:0

    Areverse proxy is a proxy server that is installed in a server network. Typically, reverse proxies are used in front of Web servers such as Apache, IIS, and Lighttpd. How do I setup nginx web server as SSL reverse proxy? When youve multipl...

  • [nginx] nginx proxy https 日期:2017-02-10 11:58:56 点击:117 好评:0

    server { listen 443; server_name mail.jb51.net; ssl on; ssl_certificate server.crt; ssl_certificate_key server.key; location / { proxy_pass https://192.168.0.2:443; proxy_set_header Host $host:443; proxy_set_header X-Real-IP $remote_addr; p...

  • [nginx] Nginx使用的php-fpm的两种进程管理方式及优化 日期:2017-02-09 03:08:04 点击:192 好评:0

    PS:前段时间配置php-fpm的时候,无意中发现原来它还有两种进程管理方式。与Apache类似,它的进程数也是可以根据设置分为动态和静态的。 php-fpm目前主要又两个分支,分别对应于php-5.2.x的版本和php-5.3.x的版本。在5.2.x的版本中,php-fpm.conf使用的是xml...

  • [nginx] nginx-openresty-windows v1.11.9.1001 更新 日期:2017-02-07 11:34:20 点击:105 好评:0

    nginx-openresty-windows v1.11.9.1001 发布了。 版本号:1.11.9.1001 32位下载地址: http://pan.baidu.com/s/1pLczj3H 64位下载地址: http://pan.baidu.com/s/1ciVqkY 发布时间:2017-02-06 修改日志: Nginx: 更新nginxcore到版本1.11.9 更新pcre到版本8.40...

  • [nginx] nginx全局变量 日期:2017-02-03 17:05:00 点击:96 好评:0

    经常需要配置Nginx ,其中有许多以 $ 开头的变量,经常需要查阅nginx 所支持的变量。Nginx支持的http变量实现在 ngx_http_variables.c 的 ngx_http_core_variables存储实现: ngx_http_core_variables static ngx_http_variable_t ngx_http_core_variables[]...

  • [nginx] Nginx作为反向Proxy的优化要点 日期:2017-02-03 17:04:26 点击:142 好评:0

    原文地址:http://my.oschina.net/hyperichq/blog/405421 常用优化要点 当nginx用于反向代理时,每个客户端将使用两个连接: 一个用于响应客户端的请求,另一个用于到后端的访问; 如果机器是两核CPU,例如: 1 2 $grep^proces/proc/cpuinfo|wc-l2 那么,可...

  • 首页
  • 上一页
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 下一页
  • 末页
  • 2012009
栏目列表
推荐内容