欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 > nginx >
  • [nginx] nginx获取自定义header参数 日期:2016-05-13 20:37:03 点击:61 好评:0

    修改配置文件fastcgi.conf,加上以下内容 fastcgi_param HTTP_USERNAME $http_username; 修改nginx.conf,日志输出格式,添加$http_username log_format main $remote_addr - $remote_user [$time_local] $request $status $body_bytes_sent $http_referer $htt...

  • [nginx] Nginx服务器中使用lua获取get或post参数 日期:2016-05-13 20:34:21 点击:52 好评:0

    使用ngx_lua模块(http://wiki.nginx.org/HttpLuaModule): local request_method = ngx.var.request_method local args = nil local param = nil local param2 = nil --获取参数的值 if GET == request_method then args = ngx.req.get_uri_args() elseif POS...

  • [nginx] 获取安装后Apache、MySQL、Nginx、PHP编译时参数 日期:2016-05-13 20:31:04 点击:57 好评:0

    # cat /usr/local/apache2/build/config.nice //获取Apache编译时的参数 #!/bin/sh # #Created by configure ./configure\ --enable-modules=all\ --enable-mods-shared=all\ --enable-charset-lite\ --enable-unique-id\ --enable-usertrack\ --disable-ver...

  • [nginx] HTTP HSTS协议和 nginx 日期:2016-05-12 19:37:34 点击:183 好评:0

    Netcraft 公司最近公布了他们检测SSL/TLS网站的研究,并指出只有仅仅5%的用户正确执行了HTTP严格传输安全HSTS。本文介绍nginx如何配置HSTS。 什么是HSTS HTTPS(SSL和TLS)确保用户和网站通讯过程中安全,使攻击者难于拦截、修改和假冒。当用户手动输入域名或h...

  • [nginx] Nginx设置Header头信息 日期:2016-05-12 19:35:07 点击:135 好评:0

    Nginx使用 ngx_headers_more 模块来增加、删除出站、入站的 Header 信息。 ngx_headers_more项目主页 默认该模块没有加入到 Nginx 的源码中,要想使用相关功能需要在编译 Nginx 时加入该模块。 本人服务器中的 Nginx 在编译时没有加入该模块,使用 -V 查看当...

  • [nginx] 源码编译安装Nginx 日期:2016-05-12 15:56:28 点击:176 好评:0

    安装说明 系统环境:CentOS6、CentOS7、Red Hat6、Red Hat7 软件:nginx-1.8.0.tar.gz 其他所需软件:openssl-1.0.2d.tar.gz、pcre-8.37.tar.gz、zlib-1.2.8.tar.gz 安装方式:源码编译安装 安装位置:/usr/local/nginx 下载地址:http://nginx.org/en/downl...

  • [nginx] Laravel的Nginx配置 日期:2016-05-11 02:38:45 点击:176 好评:0

    server { listen 80; server_name tool.lu; root /data/html/tool.lu/public; index index.html index.php; location / { try_files $uri $uri/ /index.php$is_args$query_string; } location ~ \.php$ { try_files $uri =404; fastcgi_pass 127.0.0.1:9000;...

  • [nginx] Nginx中运行PHP框架Laravel的配置文件分享 日期:2016-05-11 02:38:00 点击: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 server { listen 80; server_name sub.domain.com; set $root_path /srv/www/default; root $root_path; index index.php index.html inde...

  • [nginx] Nginx运行Laravel的配置 日期:2016-05-11 02:36:37 点击:123 好评:0

    配置文件改成这样 server{ listen80; server_namesub.domain.com; set$root_path/srv/www/default; root$root_path; indexindex.phpindex.htmlindex.htm; try_files$uri$uri/@rewrite; location@rewrite{ rewrite^/(.*)$/index.php?_url=/$1; } location~\.p...

  • [nginx] laravel nginx 配置 日期:2016-05-10 09:59:50 点击:144 好评:0

    server { 02. 03. listen 80; 04. server_name sub.domain.com; 05. set $root_path /var/www/html/application_name/public; 06. root $root_path; 07. 08. index index.php index.html index.htm; 09. 10. try_files $uri $uri/ @rewrite; 11. 12. locatio...

  • [nginx] 安装nginx并配置php环境 日期:2016-05-10 09:56:20 点击:176 好评:0

    环境: Linux ubuntu 3.2.0-23-generic-pae Ubuntu下安装nginx+php+FastCGI 1. 安装nginx 使用命令安装: #sudo apt-get install nginx Nginx的启动和停止: /etc/init.d/nginx start/stop/restart Service nginx start/stop 2. 修改nginx的配置 #vi /etc/ngin...

  • [nginx] Nginx 本机 80 访问正常而同局域网内其他机器无法访问的问 日期:2016-05-08 17:06:14 点击:99 好评:0

    今天遇到奇怪的问题,Nginx 配置和启动正常,uWSGI 配置和启动也正常,本机打开浏览器访问本机 IP:80 正常,但同一个局域网内的其他机器通过 IP:80 访问就提示无法连接。着实困扰了一阵子。 经过排查,发现是有别的服务启动后占用了 80 端口,而本机访问时因...

  • [nginx] nginx反向代理主机,公网访问出现局域网地址问题解决 . 日期:2016-05-08 17:05:15 点击:76 好评:0

    修改proxy主机的nginx配置文件: location / { proxy_pass http://192.168.0.21/; proxy_set_header Host $host; //重置主机头 } 这样可以在转向时将HOST设置为代理的域名,从而避免了再解析域名。 另: proxy_set_header Host $http_host; //重写响应外部访...

  • [nginx] 使用Nginx和iptables做访问权限控制(IP和MAC) 日期:2016-05-08 17:03:34 点击:51 好评:0

    之前配置的服务器,相当于对整个内网都是公开的,而且,除了可以通过80端口的nginx来间接访问各项服务,也可以绕过nginx,直接ip地址加端口访问对应服务,这是不对的啊,所以我们要做一些限制,因为只是对特定的人提供服务,而且局域网IP和MAC都是固定的,所...

  • [nginx] CentOS 7 Nginx Let’ s Encrypt SSL 证书安装配置 日期:2016-05-08 15:09:57 点击:83 好评:0

    Let s Encrypt 是一个免费的 SSL/TLS 证书发行机构, 证书有效期为90天, 到期前30内可续期, 实现永久免费. 本次安装使用的服务器配置: DigitaIOcean VPS + CentOS 7 + Nginx 1.9.12 Let s Encrypt SSL 证书的的获取并不是像其他网站一样, 在页面上填写资申请...

  • [nginx] Nginx + CGI/FastCGI + C/Cpp 日期:2016-05-07 19:52:37 点击:147 好评:0

    接着上篇《Nginx安装与使用》,本篇介绍CGI/FASTCGI的原理、及如何使用C/C++编写简单的CGI/FastCGI,最后将CGI/FASTCGI部署到nginx。内容大纲如下: 1.CGI 1.1.环境变量 1.2.标准输入 2.FastCGI 3. nginx cgi/fastcgi 3.1. nginx + fastcgi 3.1.1. spawn-fcg...

  • [nginx] nginx改如何配置不带www的域名 日期:2016-05-07 19:25:20 点击:156 好评:0

    下面的配置是正确的: 1 2 3 4 5 6 7 8 9 server{ listen 80; server_name www.xxx.com; location ~ .*\.(jpg|jpeg|gif|png|bmp|js|css|ico)$ { root F:/Dev/static/; expires 7d; access_log logs/xxx.log; } } 但如果把配置文件修改成下面这样,就启动不了...

  • [nginx] nginx配置安装之-修改nginx版本号 日期:2016-05-07 19:24:54 点击:162 好评:0

    在nginx的配置文件中可以设置不发送版本信息: 1 vi nginx.conf 在http {}里加上server_tokens off 2 编辑php-fpm配置文件,如fastcgi.conf或fcgi.conf: 找到: fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; 改为: fastcgi_param SERVER_SOFTWARE...

  • [nginx] nginx与awstats流量监控 日期:2016-05-07 19:24:24 点击:125 好评:0

    Awstats流量监控软件(现给啃大饼兄弟) 首先下载awstats7.0 http://cdnetworks-kr-2.dl.sourceforge.net/project/awstats/AWStats/7.0/awstats-7.0.tar.gz 安装,路径选择网站根目录建立awstats 我的路径/usr/local/www/php/code/awstats 把安装包考到linux下...

  • [nginx] nginx当前请求数 日期:2016-05-07 19:23:52 点击:116 好评:0

    添加在server作用域 location /status { stub_status on; access_log /usr/local/nginx/logs/status.log; auth_basic NginxStatus; }...

  • [nginx] 不停止Nginx服务的情况下平滑变更Nginx配置 日期:2016-05-07 19:23:20 点击:104 好评:0

    在不停止Nginx服务的情况下平滑变更Nginx配置 1、修改/usr/local/webserver/nginx/conf/nginx.conf配置文件后,请执行以下命令检查配置文件是否正确: /usr/local/webserver/nginx/sbin/nginx -t 如果屏幕显示以下两行信息,说明配置文件正确: the configura...

  • [nginx] centos6.4下配置nginx服务器更改根目录 日期:2016-05-07 19:22:39 点击:119 好评:0

    安装完nginx服务器后发现nginx的根目录在/usr/share/nginx/html/下,但是对于部署文件来说,在该目录下是不太习惯的,我就尝试着更改nginx访问的根目录 # vi /etc/nginx/conf.d/default.conf # # The default server # server { listen 80; server_name local...

  • [nginx] 检测nginx配置是否正确的方法 日期:2016-05-07 19:21:51 点击:157 好评:0

    如何检查nginx配置是否正确呢?用nginx -t命令就好了。 一、nginx的几个命令参数 Nginx 安装后只有一个程序文件,本身并不提供各种管理程序,它是使用参数和系统信号机制对 Nginx 进程本身进行控制的。 Nginx 的参数包括: 可以这样使用 /usr/local/nginx/sbi...

  • [nginx] nginx安全配置 日期:2016-05-07 19:21:15 点击:149 好评:0

    安全是一个重要的问题,必须引起注意。 1.nginx介绍 nginx本身不能处理PHP,它只是个web服务器,当接收到请求后,如果是php请求,则发给php解释器处理,并把结果返回给客户端。nginx一般是把请求发fastcgi管理进程处理,fastcgi管理进程选择cgi子进程处理结...

  • [nginx] 修改nginx配置来屏蔽svn目录 日期:2016-05-07 19:21:03 点击:131 好评:0

    收到一封360网站安全检测的邮件 提示某个域名下的svn目录可以被直接访问,非常不安全 对小型网站,我习惯通过svn来部署代码,比sftp要方便很多 解决这个问题很容易,打开nginx配置文件,加入下面这段配置即可 location ~ ^(.*)\/\.svn\/ { deny all; } locati...

  • [nginx] linux中 启动nginx是报错 日期:2016-04-29 16:38:54 点击:82 好评:0

    Starting php_fpm PHP Warning: PHP Startup: Unable to load dynamic library /www/wdlinux/php/lib/php/extensions/no-debug-non-zts-20060613/php_curl.dll - /www/wdlinux/php/lib/php/extensions/no-debug-non-zts-20060613/php_curl.dll: cannot open...

  • [nginx] Linux下的nginx启动、重新启动 日期:2016-04-29 16:37:54 点击:102 好评:0

    nginx的启动命令是: /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf -c制定配置文件的路径,不加-nginx会自动加载默认路径的配置文件。 以上是通用的启动命令 以下是转载的,对于有以下命令的nginx可以使用,没有以下命令的nginx,可以使...

  • [nginx] nginx安装Modsecurity,实现waf功能 日期:2016-04-11 22:17:16 点击:124 好评:0

    系统:centos 6.6 64位、 tengine 2.1.1, modsecurity 2.9.0 tengine : http://tengine.taobao.org/download/tengine-2.1.1.tar.gz modsecurity for Nginx: https://www.modsecurity.org/tarball/2.9.0/modsecurity-2.9.0.tar.gz OWASP规则集: https://gi...

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