Nginx 安装&默认配置简介

ゝ一纸荒年。 2023-07-04 15:31 11阅读 0赞

一. yum 安装

二. mac 安装

三. Linux编译安装

1.下载

2.安装先安装nginx依赖的包

gc

PCRE

zlib

openssl

3.上传nginx到linux

  1. 解压拷贝

5.安装

进入nginx的目录

创建nginx的安装目录

运行configure

make编译

make install编译安装

  1. Nginx的目录说明

  2. Nginx的​启动、停止

启动

停止

刷新[当用户修改了conf/nginx.conf]

四. 默认配置说明


一. yum 安装

rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

yum install -y nginx

配置文件目录:

/etc/nginx/conf.d

二. mac 安装

查看: brew search nginx

安装: brew install nginx

nginx安装路径
/usr/local/Cellar/nginx/1.6.2

发布页面:
/usr/local/var/www
配置文件:
/usr/local/etc/nginx/nginx.conf

日志路径:
/usr/local/var/log/nginx/error.log

三. Linux编译安装

1.下载

http://nginx.org/en/download.html

watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3poYW5nbG9uZ180NDQ0_size_16_color_FFFFFF_t_70

2.安装先安装nginx依赖的包

gc

  1. 安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc

yum install gcc-c++

PCRE

PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pcre库。

yum install -y pcre pcre-devel

zlib

zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库。

yum install -y zlib zlib-devel

openssl

  1. OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。
  2. nginx不仅支持http协议,还支持https(即在ssl协议上传输http),所以需要在linux安装openssl库。

yum install -y openssl openssl-devel

3.上传nginx到linux

4. 解压拷贝







#把解压nginx-1.16.1.tar.gz包

tar -zxvf nginx-1.16.1.tar.gz

#修改文件夹的名字

mv nginx-1.16.1 nginx

#把nginx拷贝到/usr/local/src里面

cp -r nginx /usr/local/src

#

5.安装

进入nginx的目录

cd /usr/local/src/nginx

创建nginx的安装目录

mkdir /usr/nginx

运行configure

./configure —prefix=/usr/nginx (指定安装目录编译)

make编译

cd /usr/local/src/nginx

make

make install编译安装

cd /usr/local/src/nginx

make install

6. Nginx的目录说明

conf 配置目录

html静态文件[cdn加速]

logs日志目录

sbin执行文件

7. Nginx的​启动、停止

启动

cd /usr/nginx/sbin

./nginx

停止

nginx -s stop

刷新[当用户修改了conf/nginx.conf]

./nginx -s reload

四. 默认配置说明

  1. #代表权限
  2. #user nobody;
  3. #工作进程
  4. worker_processes 1;
  5. #日志
  6. #error_log logs/error.log;
  7. #error_log logs/error.log notice;
  8. #error_log logs/error.log info;
  9. #pid logs/nginx.pid;
  10. events {
  11. worker_connections 1024;
  12. }
  13. #网络请求
  14. http {
  15. #支持的文件类型
  16. include mime.types;
  17. #流
  18. default_type application/octet-stream;
  19. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  20. # '$status $body_bytes_sent "$http_referer" '
  21. # '"$http_user_agent" "$http_x_forwarded_for"';
  22. #access_log logs/access.log main;
  23. sendfile on;
  24. #tcp_nopush on;
  25. #keepalive_timeout 0;
  26. keepalive_timeout 65;
  27. #gzip on;
  28. #代表服务配置
  29. server {
  30. listen 80; #端口配置
  31. server_name localhost; #服务名称
  32. #charset koi8-r;
  33. #access_log logs/host.access.log main;
  34. #当用户访问 http://ip:80/
  35. location / {
  36. root html; #当匹配当"/"这个规则时指向 nginx 目录里面的/html 文件夹
  37. index index.html index.htm; #当访问不指定具体页面时默认显示的页面
  38. }
  39. #error_page 404 /404.html;
  40. # redirect server error pages to the static page /50x.html
  41. #
  42. error_page 500 502 503 504 /50x.html;
  43. # 当服务出现 500 错误时 定向位置
  44. location = /50x.html {
  45. root html;
  46. }
  47. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  48. #
  49. #location ~ \.php$ {
  50. # proxy_pass http://127.0.0.1;
  51. #}
  52. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  53. #
  54. #location ~ \.php$ {
  55. # root html;
  56. # fastcgi_pass 127.0.0.1:9000;
  57. # fastcgi_index index.php;
  58. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  59. # include fastcgi_params;
  60. #}
  61. # deny access to .htaccess files, if Apache's document root
  62. # concurs with nginx's one
  63. #
  64. #location ~ /\.ht {
  65. # deny all;
  66. #}
  67. }
  68. # another virtual host using mix of IP-, name-, and port-based configuration
  69. #
  70. #server {
  71. # listen 8000;
  72. # listen somename:8080;
  73. # server_name somename alias another.alias;
  74. # location / {
  75. # root html;
  76. # index index.html index.htm;
  77. # }
  78. #}
  79. # HTTPS server
  80. #
  81. #server {
  82. # listen 443 ssl;
  83. # server_name localhost;
  84. # ssl_certificate cert.pem;
  85. # ssl_certificate_key cert.key;
  86. # ssl_session_cache shared:SSL:1m;
  87. # ssl_session_timeout 5m;
  88. # ssl_ciphers HIGH:!aNULL:!MD5;
  89. # ssl_prefer_server_ciphers on;
  90. # location / {
  91. # root html;
  92. # index index.html index.htm;
  93. # }
  94. #}
  95. }

发表评论

表情:
评论列表 (有 0 条评论,11人围观)

还没有评论,来说两句吧...

相关阅读