本文主要是介绍自学 Nginx,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装Nginx
1.使用yum安装nginx
1.1 到 http://nginx.org/ 官网
1.2 nginx下载界面 http://nginx.org/en/download.html
1.3 找到yum配置源
[nginx] name=nginx repo baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/ gpgcheck=0 enabled=1 |
其中 OS 修改为自己的系统 如 centos 。 OSRELEASE 修改为版本号 如 7
baseurl=http://nginx.org/packages/centos/7/$basearch/
1.4 清理yum缓存
yum clean all
1.5 查看是否用nginx包
yum list | grep nginx
1.6 使用 yum 安装 nginx
yum -y install nginx-1.14.0
1.7 查看nginx版本
nginx -V
2.nginx基础知识
2.1 nginx 安装目录
rpm -ql | nginx
目录说明
路径 | 类型 | 作用 |
/etc/logrotate.d/nginx | 配置文件 | Nginx日志轮转,用于logrotate服务的日志切割 |
/etc/nginx /etc/nginx/nginx.conf /etc/nginx/conf.d /etc/nginx/conf.d/default.conf | 目录、配置文件 | Nginx的主要配置文件 |
/etc/nginx/fastcgi_params /etc/nginx/scgi_params /etc/nginx/uwsgi_params | 配置文件 | cgi相关配置文件,fastcgi相关配置文件 |
/etc/nginx/koi-utf /etc/nginx/koi-win /etc/nginx/win-utf | 配置文件 | 编码转换映射转化文件 |
/etc/nginx/mime.types | 配置文件 | 设置http协议Content-Type与扩展名对应关系 |
/etc/sysconfig/nginx /etc/sysconfig/nginx-debug /usr/lib/systemd/system/nginx-debug.service /usr/lib/systemd/system/nginx.service | 配置文件 | 用于配置出系统守护进程管理器管理方式 |
/usr/lib64/nginx /usr/lib64/nginx/modules | 目录 | Nginx模块目录 |
/usr/sbin/nginx /usr/sbin/nginx-debug | 命令 | Nginx服务的启动管理终端命令 |
/usr/share/doc/nginx-1.14.0 /usr/share/doc/nginx-1.14.0/COPYRIGHT /usr/share/man/man8/nginx.8.gz | 文件、目录 | Nginx的手册和帮助文件 |
/var/cache/nginx | 目录 | Nginx缓存目录 |
/var/log/nginx | 目录 | Nginx日志目录 |
2.2 Nginx 编译参数
nginx -V 查看
编译选项 | 作用 |
--prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock | 安装目的目录或路径 |
--http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp | 执行对应模块时,Nginx所保留的临时文件 |
--user=nginx --group=nginx | 设定Nginx 进程启动用户和用户组 |
--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong | 设置额外的参数将会被添加到CFLAGS变量 |
--with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie' | 设置附加的参数,链接系统库 |
2.3 Nginx默认配置语法
主要配置文件 nginx.conf 包含的配置文件 default.conf
user | 设置nginx服务的系统使用用户 |
worker_processes | 工作进程数,一般和cpu保持一致。 |
error_log | nginx的错误日志 |
pid | nginx服务启动时候pid |
events | worker_connections | 每个进程允许最大的连接数 |
use | 工作进程数 |
http{ #http配置模块
server { 一个server 配置一个站点
listen 80; 监听端口
server_name localhost; 域名
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / { 每一层路径访问
root /usr/share/nginx/html; 访问目录
index index.html index.htm; 访问索引文件
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html; 错误访问界面
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#
}
server{
......
}
}
2.4 Nginx 日志类型
包括: error.log access_log
log_format 日志记录格式,要输出的内容 以 main 作为变量
2.5 启动Nginx
[root@localhost zhangbf]# nginx -c /etc/nginx/nginx.conf
[root@localhost zhangbf]# nginx -s reload 输入 ip 地址访问
这篇关于自学 Nginx的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!