• nginx


    查看nginx安装哪里

    sudo su - //切换root
    find / -name nginx//在根目录下找名字 只是nginx 的文件
    /etc/logrotate.d/nginx
    /etc/nginx //一般在这里
    /etc/rc.d/init.d/nginx
    /etc/sysconfig/nginx
    /usr/lib64/nginx
    /usr/lib64/perl5/vendor_perl/auto/nginx
    /usr/sbin/nginx
    /usr/share/nginx
    /var/lib/nginx
    /var/log/nginx

    入口配置文件路径

    z找到nginx文件夹
    /etc/nginx/nginx.conf

    nginx.conf 文件介绍

    1:错误日志记录

    error_log /var/log/nginx/error.log;
    http:{
    //几个端口,几个server
    server{}
    server{}
    直接包含 server文件
    include a文件
    }

    # For more information on configuration, see:
    #   * Official English Documentation: http://nginx.org/en/docs/
    #   * Official Russian Documentation: http://nginx.org/ru/docs/
    
    user nginx;
    worker_processes auto;
    error_log /var/log/nginx/error.log;
    pid /var/run/nginx.pid;
    
    # Load dynamic modules. See /usr/share/nginx/README.dynamic.
    include /usr/share/nginx/modules/*.conf;
    
    events {
        worker_connections  1024;
    }
    
    
    http {
        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;
        tcp_nodelay         on;
        keepalive_timeout   65;
        types_hash_max_size 2048;
    
        include             /etc/nginx/mime.types;
        default_type        application/octet-stream;
    
        # Load modular configuration files from the /etc/nginx/conf.d directory.
        # See http://nginx.org/en/docs/ngx_core_module.html#include
        # for more information.
        include /etc/nginx/conf.d/*.conf;
    }
    

    默认安装路径

    /etc/nginx

    默认配置路径
    /etc/nginx/conf.d/default.conf
    cat /etc/nginx/conf.d/default.conf

    负载均衡
    nginx upstream 配置

    /etc/nginx/conf.d/default.conf

    [root@ding conf.d]# cat /etc/nginx/conf.d/default.conf
    #
    # The default server
    #
    
    server {
        listen       80 default_server;
        server_name  _;
        root         /home/webroot/webroot;
    
        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;
    
        location / {
        }
    
        location /static/manhattan/ironhide/output{
    	alias /home/webroot/webroot/manhattan-ironhide-webapp/output/client;
        }
        error_page 404 /404.html;
            location = /40x.html {
        }
    
        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    
    }
    
  • 相关阅读:
    ehcache 使用
    android 换肤 apk
    ant 打不同渠道包
    strawberry perl
    rest 网络设计开发,降低复杂性设计方案
    android 进度条
    android 算定义布局xml
    ant 自动打包
    c# 调用cmd 输出 阻塞 解决
    web service2
  • 原文地址:https://www.cnblogs.com/leee/p/9910676.html
Copyright © 2020-2023  润新知