
nginx
nginx学习
爆破小能手
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx命令解析
[root@localhost home]# nginx -h nginx version: nginx/1.16.1 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives] Options: -?,-h : this help -v : show versio...原创 2019-10-13 11:59:01 · 3572 阅读 · 0 评论 -
nginx源码安装方法
#安装依赖包 yum -y install gcc g++ make pcre pcre-devel openssl openssl-devel zlib zlib-devel #下载源码包 wget http://nginx.org/download/nginx-1.10.0.tar.gz tar -xvf nginx-1.10.0.tar.gz cd nginx-1.10.0 #预编译 ./c...原创 2019-10-13 10:57:32 · 118 阅读 · 0 评论 -
nginx源码安装后不能启动
【报错信息】 nginx: [emerg] getpwnam(“nginx”) failed nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed 【原因】 编译时指定了nginx的用户名为nginx,而系统没有创建对于用户 【解决方法】 useradd nginx ...原创 2019-10-13 10:50:32 · 333 阅读 · 0 评论 -
nginx如何处理http url请求
一、 http协议 定义: http(HyperText Transport Protocol):超级文本阐述协议 报文格式 header+body – Header格式 Request: Method对于的方法有:GET、POST、PUT、DELETE、HEAD、OPTIONS GET: 进行数据请求 HEAD: 和GET类似,但只返回header部分 POST:表单提交,请求进...原创 2019-10-11 19:45:40 · 1449 阅读 · 0 评论