nginx那些事1

1. Linux安装nginx
1.1 找到nginx网站下载它
1.2 查看下载路径
/Users/lelontar/Downloads
1.3 利用fz将其上传到linux服务器
/usr/local/software
1.4 通过解压命令将其解压
tar -zxvf nginx-1.20.2.tar.gz
1.5 nginx是c++开发的,需要下载相应的工具
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
1.6 编译并安装
./configure

make&make install

编译

1.7 默认安装路径是:
/usr/local/nginx
1.8 启动nginx时要进入到sbin目录下
cd /usr/local/nginx/sbin   
./nginx
1.9 验证是否安装成功

在这里插入图片描述

1.10 nginx常用命令

常用命令

1.11 杀死nginx进程一定要杀死他的master进程
kill -9 master

在这里插入图片描述

2. nginx配置文件详解
2.1 默认安装目录
/usr/local/nginx
2.2 主要目录

在这里插入图片描述

2.3 conf目录
主要是config和config.default

在这里插入图片描述

  • nginx启动的时候默认找的是config这个配置

  • default是为了防止config被修改坏了不能复原时,直接copy一份default改为config即可

  • #user  nobody;
    # worker最好与cpu核数保持一致
    worker_processes  1;
    
    #error_log  logs/error.log;
    #error_log  logs/error.log  notice;
    #error_log  logs/error.log  info;
    
    #pid        logs/nginx.pid;
    
    # 事件模块指令,用来指定Nginx的IO模型,Nginx支持的有select、poll、kqueue、epoll 等。不同的是epoll用在Linux平台上,而kqueue用在BSD系统中,对于Linux系统,epoll工作模式是首选
    events {
    		use epoll;
    		# 每个进程最大链接数
    		# 作为反向代理来说,最大并发数量应该是worker_connections * worker_processes/2。因为反向代理服务器,每个  并发会建立与客户端的连接和与后端服务的连接,会占用两个连接
        worker_connections  1024;
    }
    
    
    http {
        include       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  logs/access.log  main;
    
        sendfile        on;
        #tcp_nopush     on;
    
        #keepalive_timeout  0;
        keepalive_timeout  65;
    
        #gzip  on;
    
        server {
            listen       80;
            server_name  localhost;
    
            #charset koi8-r;
    
            #access_log  logs/host.access.log  main;
    
            location / {
                root   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   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;
            #}
        }
    
    
        # another virtual host using mix of IP-, name-, and port-based configuration
        #
        #server {
        #    listen       8000;
        #    listen       somename:8080;
        #    server_name  somename  alias  another.alias;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    
        # HTTPS server
        #
        #server {
        #    listen       443 ssl;
        #    server_name  localhost;
    
        #    ssl_certificate      cert.pem;
        #    ssl_certificate_key  cert.key;
    
        #    ssl_session_cache    shared:SSL:1m;
        #    ssl_session_timeout  5m;
    
        #    ssl_ciphers  HIGH:!aNULL:!MD5;
        #    ssl_prefer_server_ciphers  on;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    }
    
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
M1芯片的Mac电脑上可以安装和运行Docker以及Nginx镜像。安装步骤如下: 1. 首先,确保您的M1 Mac已经安装了Docker。您可以从官方网站下载并安装Docker Desktop。 2. 打开终端应用程序,并运行以下命令以拉取Nginx镜像: ``` docker pull nginx ``` 3. 创建一个用于存储Nginx配置文件、日志和HTML内容的目录。在终端中运行以下命令: ``` mkdir -p /Users/work/nginx/conf mkdir -p /Users/work/nginx/log mkdir -p /Users/work/nginx/html ``` 4. 运行以下命令来创建一个临时的Nginx容器,以便复制配置文件、目录和HTML内容: ``` docker run --name nginx -p 9001:80 -d nginx ``` 这将创建一个名为"nginx"的容器,并将容器的80端口映射到主机的9001端口。 5. 使用以下命令将容器中的Nginx配置文件复制到宿主机: ``` docker cp nginx:/etc/nginx/nginx.conf /Users/work/nginx/conf/nginx.conf ``` 6. 使用以下命令将容器中的conf.d文件夹复制到宿主机: ``` docker cp nginx:/etc/nginx/conf.d /Users/work/nginx/conf/conf.d ``` 7. 使用以下命令将容器中的HTML文件夹复制到宿主机: ``` docker cp nginx:/usr/share/nginx/html /Users/work/nginx/ ``` 8. 完成上述步骤后,您可以删除临时创建的Nginx容器。运行以下命令: ``` docker rm nginx ``` 9. 最后,创建正式的Nginx容器并映射端口。运行以下命令: ``` docker run -p 9002:80 --name nginx -v /Users/work/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /Users/work/nginx/conf/conf.d:/etc/nginx/conf.d -v /Users/work/nginx/html:/usr/share/nginx/html -d nginx:latest ``` 这将创建一个名为"nginx"的容器,并将容器的80端口映射到主机的9002端口。 请注意,根据您的需求,您还可以挂载Nginx日志文件,通过添加以下命令: ``` -v /Users/work/nginx/log:/var/log/nginx ``` 现在,您可以在M1 Mac上运行Nginx容器了。您可以使用以下命令查看正在运行的Docker容器: ``` docker ps ``` 希望这些步骤能帮助您在M1芯片的Mac电脑上成功安装和运行Docker和Nginx镜像。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

乐观的Terry

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值