Nginx最佳实践记录-安装后默认配置参数讲解

Nginx安装目录和配置语法讲解

路径目录

1./etc/logrotate.d/nginx 配置文件,Nginx日志轮询,用于logrotate服务的日志切割
2./etc/nginx;/etc/nginx/nginx.conf;/etc/nginx/conf.d;/etc/nginx/conf.d/default.conf(默认不做更改是这个配置文件生效) ,目录配置文件,这些是Nginx的主配置文件
3./etc/nginx/fastcgi_params;/etc/nginx/uwsgi_params;/etc/nginx/scgi_params; 配置文件,cgi配置相关,fastgi配置
4./etc/nginx/koi-utf;/etc/nginx/koi-win/;/etc/nginx/win-utf; 配置文件,编码转换映射转换文件
5./etc/nginx/mime.types 配置文件,设置http协议的Content-Type与扩展名对应关系
6./usr/lib/systemd/system/nginx-debug.service;/usr/lib/systemd/nginx.service;/etc/sysconfig/nginx;/etc/sysconfig/nginx-debug;配置文件,用于配置出系统守护进程管理器的管理方式区别于CentOS6的/etc/init.d/的进程管理方式 
7./usr/lib64/nginx/modules;/etc/nginx/modules 目录,Nginx模块目录
8./usr/sbin/nginx;/usr/sbin/nginx-debug 命令,Nginx服务的启动管理和终端命令
9./usr/share/doc/nginx-1.16.1;/usr/share/doc/nginx-1.16.1/COPYRIGHT;/usr/share/man/man8/nginx.8.gz 文件目录,Nginx的手册和帮助文件
10./var/cache/nginx 目录 Nginx的缓存目录
11./var/log/nginx 目录 Nginx的日志目录

编译模块参数

[root@pent ~]# nginx -V
nginx version: nginx/1.16.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) 
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --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 --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'

安装编译参数

--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
这些是Nginx的基础路径,在编译的时候已经加入进去了

--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执行对应模块时Nginx所保留的临时性文件

--user=nginx
--group=nginx
设定Nginx进程启动的用户和组用户

--with-cc-opt=parameters
设置额外的参数将被添加到CFLAGS变量

--with-ld-opt=parameters
设置附加的参数,链接系统库

默认配置语法

默认的nginx.conf配置内容
user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}
默认的default.conf配置内容
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;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
具体配置参数讲解
1.user  -> 设置nginx服务是使用系统中哪个用户来启动
2.worker_processes   -> 工作的进程数量
3.error_log   -> nginx的错误日志
4.pid  -> nginx服务启动时候的pid
5.events  -> worker_connections-每个进程允许的最大连接数  use-工作的进程数
nginx的http配置语法
server {
    listen       80; # 监听的服务端口
    server_name  localhost; # 可以配置多个server,可以配置独立域名,虚拟主机

    location / { # 可以控制每一层的访问路径,这里是配置的默认路径
        root   /usr/share/nginx/html; # 具体路径
        index  index.html index.htm; # 具体页面,一般用作首页
    }

    error_page   500 502 503 504  /50x.html; # 定义一个错误页面
    location = /50x.html { # 指定访问的位置
        root   /usr/share/nginx/html;  # 具体访问的位置
    }
}
启动&停止&重启nginx
systemctl start nginx.service
systemctl stop nginx.service
systemctl restart nginx.service
systemctl reload nginx.service
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容

  • 岁月如诗,谱写了一首动人的诗 岁月如歌,演奏了一曲动听的歌 岁月如画,描绘了一副精美的画 在人生的旅途中,...
    麦盖提650张文宽阅读 904评论 4 6
  • 像夜里一滴雨 贮藏在冰凉的梦里 不让她风化,不让她失落…… 2019年2月11日
    五月传奇阅读 397评论 4 12
  • 每天早上5点起床。做饭洗衣收拾卫生 。成了固定的模式。 每天早上做三次饭,变着花样做吧!只要孩子们爱吃...
    会飞的抱抱阅读 167评论 0 1
  • 终于 你来到这个世界一周了 我在看到你几天后 就离开了 去遥远的南方 这边比家里冷 终于 你看到所有我的亲戚了 不...
    布老头和他的家人们阅读 134评论 0 0
  • 2017年就这样过完了,我们总是在时间流逝后感叹时间都去哪了 回首这一年,感恩所有的亲人朋友一路的陪伴与相随 这一...
    成莉cl阅读 155评论 0 0