欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 > nginx >
  • [nginx] Nginx Google 扩展-ngx_http_google_filter_module 日期:2016-04-11 22:10:09 点击:149 好评:0

    下载Nginx Google扩展 1 git clone https://github.com/cuber/ngx_http_a href=https://www.olinux.org.cn/tag/google title=查看与 google 相关的文章target=_blankgoogle/a_filter_module 下载 substitutions扩展 1 git clone https://github.com/yaoweibin...

  • [nginx] nginx禁止直接以IP访问网站 日期:2016-04-11 22:03:40 点击:74 好评:0

    经常出现这种情况,有哥们直接用IP访问公司网站,这样一看就不爽,所以通过nginx禁止直接以IP访问网站。 #在虚拟主机最前面加上如下即可,记住一定要作为第一个server(不然不生效)。如下,返回值404,可以改403等。 Nginx 0.8.20之前的版本如下: server { li...

  • [nginx] 升级nginx 日期:2016-04-11 22:03:01 点击:94 好评:0

    先查看下原来的编译参数 /usr/local/nginx/sbin/nginx -V configure arguments: --user=nobody --group=nobody --prefix=/usr/local/nginx --with-http_stub_status_module --add-module=../ngx_cache_purge-1.0 --with-debug --with-http_sub_module sudo ./...

  • [nginx] Nginx优化worker_processes(worker_cpu_affinity) 日期:2016-04-11 22:01:07 点击:130 好评:0

    Nginx 优化:CPU(Core) + worker_processes(worker_cpu_affinity) 下面总结了,四线程、八线程、十六线程的CPU查看与Nginx进行配置内容: 配置1:4 CPU(4 Core) + 4 worker_processes(每个worker_processes 使用1个CPU) [it@it.net.cn ~]$ cat /proc/...

  • [nginx] nginx log记录请求的头信息 日期:2016-04-11 21:59:56 点击:132 好评:0

    记录访问的log,为了在出现特殊情况时,方便检查出现问题的地方。 log_format accesslog $remote_addr - $remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for;access_log /var/log/nginx/ac...

  • [nginx] nginx+php-fpm出现502错误的终极解决方案 日期:2016-04-11 21:58:37 点击:71 好评:0

    nginx+php-fpm出现502错误的终极解决方案 利用Nignx+php-fpm架构服务器的linux运维工程师们肯定都碰到过502 Bad Gateway错误的情况,出现502 Bad Gateway错误是由于php-fpm进程挂掉了,当然,当出现502 Bad Gateway错误的同时,我们也不得不说下504 timeout错...

  • [nginx] 使用Nginx的proxy_cache缓存功能缓存前端静态页面 日期:2016-04-11 21:51:30 点击:172 好评:0

    Nginx从0.7.48版本开始,支持了类似Squid的缓存功能。这个缓存是把URL及相关组合当作Key,用md5编码哈希后保存在硬盘上,所以它可以支持任意URL链接,同时也支持404/301/302这样的非200状态码。虽然目前官方的Nginx Web缓存服务只能为指定URL或状态码设置过期...

  • [nginx] nginx try_files 判断文件存在 日期:2016-04-09 23:39:17 点击:119 好评:0

    现在有这样一个需求,网站根目录下有静态文件,static目录下也有静态文件,static目录下的静态文件是程序批量生成的,我想让nginx在地址不变的前提下优先使用static目录里面的文件,如果不存在再使用根目录下的静态文件,比如访问首页http://example.com/ind...

  • [nginx] nginx %2F(/)自动解码问题 日期:2016-04-09 23:38:54 点击:137 好评:0

    nginx 会对uri中的字符进行解码然后传递给fastCGI,一般情况下也无妨,偏偏我的搜索词中含有反斜杠,编码后的地址 /search/Madmanfoo%2fLovesong/ nginx传递给php的地址就变成了,我用的PATHINFO所以无法得到正确的结果 /search/Madmanfoo/Lovesong/ 把nginx...

  • [nginx] 通过http头设置http缓存 日期:2016-04-09 23:38:26 点击:153 好评:0

    通过nginx可以设置http缓存 location ~* \.(js|css|gif|jpeg|jpg|png|ico|bmp)$ { expires 7d; access_log off; break;} 用Chrome浏览器测试确实有缓存了,但是F5刷新接收到304之后还是会下载内容(和Ctrl+F5不同,Ctrl+F5会强制清除缓存并获取新内容,因为F...

  • [nginx] nginx 绑定worker进程和cpu 日期:2016-04-09 23:38:01 点击:138 好评:0

    worker_processes 可以设置nginx 使用的核心数,worker_cpu_affinity 选项可以绑定worker进程和CPU,这个配置项仅适用于linux。我vps上有4个逻辑核心,我开了一个worker进程,将CPU3绑定给worker进程。 worker_proceses 1;worker_cpu_affinity 1000; 登陆另...

  • [nginx] nginx配置中获取GET参数 日期:2016-04-09 23:36:50 点击:92 好评:0

    $arg_PARAMETER这个变量值为:GET请求中变量名PARAMETER参数的值。 $args 这个变量等于GET请求中的所有参数。...

  • [nginx] nginx常用配置 日期:2016-04-09 23:32:36 点击:58 好评:0

    server { listen 80; server_name afreelyrics.com www.afreelyrics.com; #host跳转到主域名 if ($host != afreelyrics.com) { rewrite ^(.*) http://afreelyrics.com$1 permanent; } access_log /var/log/nginx/afreelyrics.com/access.log; error_log /var/...

  • [nginx] Nginx反向代理一般化配置 日期:2016-04-09 23:30:06 点击:168 好评:0

    server { listen 80; server_name www.it.net.cn; location / { return 404; proxy_pass http://127.0.0.1:81; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwa...

  • [nginx] nginx忽略.svn和.git 日期:2016-04-09 23:30:01 点击:77 好评:0

    1 location ~ ^(.*)/\.(svn|git)/ { 2 deny all; 3 }...

  • [nginx] nginx 1.9.14 发布 日期:2016-04-06 15:28:39 点击:98 好评:0

    nginx 1.9.14 发布了。 主要改进如下: *) Feature: OpenSSL 1.1.0 compatibility. *) Feature: the proxy_request_buffering, fastcgi_request_buffering, scgi_request_buffering, and uwsgi_request_buffering directives now work with HTTP/2. *) Bugfi...

  • [nginx] HttpStubStatusModule 日期:2016-04-03 21:46:47 点击:187 好评:0

    Synopsis This module provides the ability to get some status from nginx. This module is not compiled by default and must be specified using the --with-http_stub_status_module argument to configure when compiling Nginx. Example: location /n...

  • [nginx] Linux下Nginx+Tomcat整合的安装与配置 日期:2016-04-03 21:46:06 点击:61 好评:0

    一、安装Tomcat和JDK 1、上传apache-tomcat-6.0.18.tar.gz和jdk-6u12-linux-i586.bin至/usr/local 2、执行如下命令安装tomcat: #cd /usr/local #tar zxvf apache-tomcat- 6.0 . 18 .tar.gz 解压完成后将apache-tomcat-6.0.18重命名为tomcat 3、执行如下命令...

  • [nginx] nginx的stub_status状态信息解释 日期:2016-04-03 21:45:37 点击:159 好评:0

    一、加载http_stub_status模块 [root@10.10.90.97 ~]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module [root@10.10.90.97 ~]# make make install 二、修改nginx配置文件 在server中,添加如下代码: location /NginxStatus { stub_s...

  • [nginx] cacti监控nginx出现 no (LWP::UserAgent not found) 日期:2016-04-03 21:45:19 点击:159 好评:0

    当你使用cacti监控nginx性能时可能会出现 no (LWP::UserAgent not found) 的错误。经过我两台VPS环境对比发现的确原因是系统 perl 缺少了相关组件,但是解决办法却不是网络上搜出来的那些 cpan install LWP::UserAgent 经过对比发现,缺少的是perl-libwww-pe...

  • [nginx] 为 Cacti 添加 Nginx status 监控 日期:2016-04-03 21:44:28 点击:89 好评:0

    关于这一内容,在google上一搜就大把.内容如下: nginx编译时允许http_stub_status_module 然后在 nginx.conf 中 添加如下(粗体字部分) server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / {...

  • [nginx] Cacti如何监控Nginx运行状态 日期:2016-04-03 21:42:16 点击:185 好评:0

    Cacti如何监控Nginx运行状态:Cacti和Nagios是现在比较用得多的网络监控软件。Cacti偏重于网络流量,系统负载方面的监控。Nagios则比较注重于主机和服务的监控。本文讲述的是Cacti如何监控Nginx运行状态。 Cacti监控Nginx运行状态的方法 Cacti或者是Cactiez...

  • [nginx] nginx在ubuntu上的安装 日期:2016-04-03 21:27:49 点击:116 好评:0

    1、安装Nginx apt-get install nginx (要最新版本下载下来编译吧) 装完应该能正常运行了。如果之前有装APACHE要改下端口。。。或者直接 apt-get remove apache2 /etc/init.d/nginx stop /etc/init.d/nginx start 2、安装php-cgi apt-get install php-cgi (...

  • [nginx] 利用 nginx url hash 提高squid服务器命中率 日期:2016-04-03 21:26:55 点击:65 好评:0

    url hash是用于提高squid命中率的一种架构算法,一般现行的架构通常是使用dns轮询或lvs等将访问量负载均衡到数台squid,这样做可以使 squid的访问量做到了均衡,但是忽略了一个重要方面--数据量。在这种架构下,每台squid的数据量虽然是一致的,但通常都是满...

  • [nginx] Linux下Nginx+Tomcat整合的安装与配置 日期:2016-04-03 21:16:24 点击:165 好评:0

    一、安装Tomcat和JDK 1、上传apache-tomcat-6.0.18.tar.gz和jdk-6u12-linux-i586.bin至/usr/local 2、执行如下命令安装tomcat: #cd /usr/local #tar zxvf apache-tomcat-6.0.18.tar.gz 解压完成后将apache-tomcat-6.0.18重命名为tomcat 3、执行如下命令安装...

  • [nginx] 简单配置搞定 Nginx + Tomcat + HTTPS 日期:2016-04-03 21:00:22 点击:174 好评:0

    简单配置搞定 Nginx + Tomcat + HTTPS 之前在网上搜索到的很多文章在描述 Nginx + Tomcat 启用 HTTPS 支持的时候,都必须在 Nginx 和 Tomcat 两边同时配置 SSL 支持。但我一直在想为什么就不能按照下面的方式来配置呢?就是 Nginx 上启用了 HTTPS,而 Nginx...

  • [nginx] 如何正确配置Nginx+PHP 日期:2016-04-03 09:28:26 点击:189 好评:0

    对很多人而言,配置Nginx+PHP无外乎就是搜索一篇教程,然后拷贝粘贴。听上去似乎也没什么问题,可惜实际上网络上很多资料本身年久失修,漏洞百出,如果大家不求甚解,一味的拷贝粘贴,早晚有一天会为此付出代价。 假设我们用PHP实现了一个前端控制器,或者直...

  • [nginx] HAProxy、Nginx 配置 HTTP/2 完整指南 日期:2016-04-02 17:21:27 点击:107 好评:0

    基于最近对HTTP/2的争论和它的优势,是时候升级底层架构了。这篇文章将会介绍如何在安装和配置HAProxy和Ngnix(使用ssl终端)。为了简化流程,我建议你准备好使用Docker镜像。 如果你想跳过安装环节或你只对配置环节感兴趣,可以跳至配置部分。 我为什么需要...

  • 首页
  • 上一页
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 下一页
  • 末页
  • 722011
栏目列表
推荐内容