Fork me on GitHub

李可

导航

统计

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

}

posted on   李可在江湖  阅读(291)  评论(0编辑  收藏  举报

编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示