摘要:
环境: 两台后端web,一台代理服务器 web1:eth0:192.168.2.100/24 httpd做一个web web2:eth0:192.168.2.200/24 httpd做一个web proxy:eth0:192.168.2.5/24 代理服务器有什么好处? 1.隐藏后端真实服务器信,有 阅读全文
摘要:
nginx服务器的地址重写,主要用到的配置参数是rewrite rewrite regex replacement flag rewrite 旧地址 新地址 [选项] 支持的选项有: last 不再读其他rewrite break 不再读其他语句,结束请求 redirect 临时重定向 permam 阅读全文
摘要:
这里m使用mariadb 需要下列软件列表: nginx mariadb 数据库客户端软件 mariadb-server 数据库服务器软件 mariadb-devel 其他客户端软件的依赖包 php php解释器 php-fpm php进程管理器服务 php-mysql php的数据库拓展包 安装前 阅读全文
摘要:
注意:在源码安装nginx时必须要使用--with-http_ssl_module参数启动加密模块. openssl genrsa > cert.key //使用openssl自己签发私钥 openssl req -new -x509 -key cert.key > cert.pem //签发证书 阅读全文
摘要:
在nginx中虚拟主机的类型与apache一样也有三种 1.基于域名的虚拟主机 2.基于端口的虚拟主机 3.基于IP地址端口的虚拟主机 在nginx配置文件中每一个server为一个虚拟主机如果需要多个虚拟主机只需要添加server即可例如 server{ listen 80; server_nam 阅读全文
摘要:
1打开conf下的配置文件 在server 之下 location 之上加入 auth_basic "Input Password:"; 弹出的提示信息 auth_basic_user_file "/usr/local/nginx/pass"; 认证的密码文件 2.使用htpasswd生成相应的密码 阅读全文