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/nginxhtml

入口配置文件路徑

z找到nginx文件夾
/etc/nginx/nginx.confnode

nginx.conf 文件介紹

1:錯誤日誌記錄nginx

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

# 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;
}

默認安裝路徑shell

/etc/nginxapp

默認配置路徑
/etc/nginx/conf.d/default.conf
cat /etc/nginx/conf.d/default.conf負載均衡

負載均衡
nginx upstream 配置webapp

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

[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 {
    }

}
相關文章
相關標籤/搜索