Nginx auto_index和auth_basic】的更多相关文章

Nginx auto_index和auth_basic 1.nginx auto_index nginx站点目录浏览功能,默认情况下为关闭 启用或禁用目录列表输出 开启这个功能的前提是站点目录下没有首页index.html 官方说明:http://nginx.org/en/docs/http/ngx_http_autoindex_module.html 语法Syntax:    autoindex on | off; 默认值Default:    autoindex off; 使用字段Conte…
参考链接 https://www.jianshu.com/p/1c0691c9ad3c auth_basic_user_file 所需要的密码,可以通过如下方法生成 1)安装htpasswd (yum install httpd-tools) htpasswd -c password_file login_user   #password_file 是一会生成出来的密码文件 login_user是用户名 输入密码 再次输入密码 auth_basic_user_file 的格式是用户冒号密码 如:…
1.Nginx编译安装 nginx依赖于pcre库,需要先安装pcre(二进制包,跟正则表达式有关),pcre-devel(头文件) configure  --prefix=/usr/local/nginx make && make install Nginx: 主进程(master)功能: 1.读取并验证配置信息: 2.创建.绑定及关闭套接字: 3.启动.终止及维护worker进程: 4.无须终止服务而重新配置工作特性: 5.控制程序非中断升级: 6.重新打开日志文件,实现日志滚动: 7…
Nginx+keepalived主主负载均衡服务器测试实验环境: 主Nginx之一:192.168.11.27主Nginx之二:192.168.11.28Web服务器一:192.168.11.37Web服务器二:192.168.11.38VIP地址一:192.168.11.208VIP地址二:192.168.11.209 环境:以下环境均使用的是CentOS 5.7 x86_64位系统[root@localhost ~]# lsb_release  -a LSB Version:    :cor…
一.ELK简介 Elk是指logstash,elasticsearch,kibana三件套,我们一般使用它们做日志分析. ELK工作原理图: 简单来讲ELK具体的工作流程就是客户端的logstash agent(shipper)从日志里取出数据推送到服务端的redis里,服务端的logstash从redis里取出数据推送到elasticsearch并产生索引,然后使用Kibana进行页面展示. 二.ELK准备环境配置 1.搭建环境(都是在Centos6.8系统下操作完成):  Ip地址    …
1先安装 nginx 这里是教程 点击查看 2 然后 使用命令 创建用户 htpasswd -c /etc/nginx/passwd.db baker 输入密码  提示添加完毕 3 查看加密后的用户和密码 cat passwd.db 4 nginx中配置auth_basic 和auth_basic_user_file 在nginx的配置文件总  nginx.conf localtion / {} 里面加入 auth_basic "your name and your password"…
在和一些朋友交流Nginx+Keepalived技术时,我虽然已成功多次实Nginx+Keepaived项目方案,但这些都是用的单主Nginx在工作,从Nginx长期只是处于备份状态,所以我们想将二台Nginx负载均衡器都处于工作状态,其实用Nginx+Keepalived也很容易实现.此方法适用场景:适合中小型网站应用场景. 一般为了维护方便,企业网站的服务器都在自己的内部机房里,只开放了Keepalived的VIP地址的两个端口80.443,通过Juniper SSG550防火墙映射出去,外…
为了简单共享文件,有些人使用svn,有些人使用ftp,但是更多得人使用索引(index)功能.apache得索引功能强大,并且也是最常见得,nginx得auto_index实现得目录索引偏少,而且功能非常简单.先来看看我们得效果图. nginx auto_index索引效果图 nginx配置   1 2 3 4 5         location ~ ^/2589(/.*)         {                 autoindex on; //开启                …
1.配置基于域名的虚拟主机 [root@web01 html]# egrep -v "#|^$" /application/nginx/conf/nginx.conf.default >/application/nginx/conf/nginx.conf ####将配置文件中的注释和空行删除[root@web01 html]# vim /application/nginx/conf/nginx.conf #####修改如下特殊颜色内容 worker_processes  1;ev…
模块名称 作用 语法 默认 配置位置 配置举例 结果验证 备注 1 --with-http_stub_status_module 监控Nginx的服务器连接状态 stub_status   server.location这一级来配置 location = /mystatus{        stub_status;    } 此时访问http://127.0.0.1/mystatus即可查看现在有nginx现在有多少连接了   2 --with-http_random_index_module…