Nginx基本知识,nginx安装使用方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx基本知识,nginx安装使用方法相关的知识,希望对你有一定的参考价值。
nginx 是一款高性能的Web服务器软件.
-
具有极高的并发性能
-
利用Nginx与Tomcat组合使用, 搭建反向代理集群
- Nginx 反向代理集群可以解决网站的高并发问题!
1、安装
Yum安装
安装
yum -y install nginx
启动、停止、重启、开机自启
systemctl start|stop | restart | enable nginx.service
检查进程
ps -aux|grep nginx
源码编译安装
下载源代码
wget http://nginx.org/download/nginx-1.12.2.tar.gz
创建nginx用户
useradd nginx
创建nginx安装目录
mkdir /usr/local/nginx
安装编译时候的依赖包
yum -y install pcre-devel openssl openssl-devel
解压并且编译
tar -zxf nginx-1.12.2.tar.gz
cd nginx-1.12.2
./configure --prefix=/usr/local/nginx --user=nginx --with-http_ssl_module
make
make install
运行nginx
nginx -c /usr/local/nginx/conf/nginx.conf
检查进程
ps -aux|grep nginx
2、配置
nginx配置文件位置
编译安装版本
/usr/local/nginx/conf/nginx.conf
yum安装版本
/etc/nginx/nginx.conf
nginx配置文件结构
通用(全局)配置参数
http{
http 协议通用参数
server{
虚拟机配置参数
}
server{
虚拟机配置参数
}
}
3、虚拟主机
在一个Web服务器上通过服务器软件模拟多台Web 服务器, 其中每个虚拟的Web服务器称为一个虚拟主机. 虚拟主机的好处是可以充分复用同一个web服务器. 对于用户来说, 用户感觉是多个网站.
Nginx 配置文件中 每个 server{} 块对应一个虚拟主机
虚拟主机有3种:
基于域名的虚拟主机(最常用的虚拟主机)
需要为服务器指定多个域名
域名资源解析方便, 便于用户记忆, 用户体验好.
基于IP虚拟主机
需要为服务器指定多个IP地址
需要租用IP
很少使用这种方式
基于端口的虚拟主机
绑定到服务器的多个端口
默认80端口只有一个
使用其他端口号提供服务, 因为用户需要记忆端口, 用户的体验差
请求 t1.canglaoshi.org 访问 t1文件夹 index.html文件
server{
listen 80;
server_name t1.canglaoshi.com;
location / {
root t1;
index index.html;
}
}
在Nginx文件夹/usr/local/nginx中添加新文件夹t1和文件index.html
测试:
http://t1.canglaoshi.com
4、https加密访问
- 下载证书文件到 /usr/local/nginx/conf/cert
- 更新 nginx.conf 的配置, 并且测试配置文件
- 重新启动Nginx
- 在客户端配置域名解析
- 利用客户端访问 https://test.canglaoshi.com
nginx.conf
test.conf
server{
listen 80;
server_name test.canglaoshi.com;
return 301 https://test.canglaoshi.com;
}
server{
listen 443;
server_name test.canglaoshi.com;
ssl on;
ssl_certificate cert/xxxxxxxxxxxxx.pem;
ssl_certificate_key cert/xxxxxxxxxxxxx.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location / {
root test;
index index.html;
}
}
重启nginx访问https://test.canglaoshi.com 即可
以上是关于Nginx基本知识,nginx安装使用方法的主要内容,如果未能解决你的问题,请参考以下文章
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段
nginx.conf 忽略了 nginx-ingress 配置映射片段