NGINX /etc/nginx/nginx.conf.default

原始 📋 Red Hat Enterprise Linux 9 (Plow) 117 行

适用于

当前查看:
Red Hat Enterprise Linux 9 (Plow)
相同于:
CentOS Stream 9 Red Hat Enterprise Linux 8 (Ootpa)
其他版本:

详情

大小
117 行
MD5
3a0b1f2d0a5734fe3200a48703bafed2
SHA256
95363d79620c1b3eb6951711b6630a411f147bc9197bc91442c0605cf6688e46
/etc/nginx/nginx.conf.default
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


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

}

复制粘贴

curl:
curl https://exampleconfig.com/api/v1/config/original/3a0b1f2d0a5734fe3200a48703bafed2?hint=nginx.conf.default
wget:
wget -O nginx.conf.default https://exampleconfig.com/api/v1/config/original/3a0b1f2d0a5734fe3200a48703bafed2?hint=nginx.conf.default

给 AI Agent 用

<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/3a0b1f2d0a5734fe3200a48703bafed2?hint=nginx.conf.default' /><config><app>NGINX</app><os>Red Hat Enterprise Linux 9 (Plow)</os><location>/etc/nginx/nginx.conf.default</location><lines>117</lines><md5>3a0b1f2d0a5734fe3200a48703bafed2</md5><sha256>95363d79620c1b3eb6951711b6630a411f147bc9197bc91442c0605cf6688e46</sha256></config></prompt>

粘贴到 Claude、ChatGPT 或任何 AI 助手里。

安装 NGINX

Alpine Linux

sudo apk add nginx

Debian

sudo apt update && sudo apt install nginx

Red Hat Enterprise Linux

sudo yum install nginx

Ubuntu

sudo apt update && sudo apt install nginx

文件位置

文件路径
/etc/nginx/nginx.conf.default
目录
/etc/nginx/
用途
系统级配置目录
说明
/etc/ 里的文件是系统级配置,影响所有用户。

FAQ

什么时候该用这个 nginx.conf.default?

用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 NGINX config 做 diff。

怎么恢复 NGINX 的默认配置?

下载文件,把 /etc/nginx/nginx.conf.default 里的当前配置备份好,替换掉,然后 reload 或 restart NGINX。

nginx.conf.default 适合直接上生产吗?

这是 Red Hat Enterprise Linux 9 (Plow) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。

和其他 OS 版本有什么不同?

默认值会随发行版和版本变化,这份对应 Red Hat Enterprise Linux 9 (Plow)。

我可以用它来排查 NGINX 吗?

可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。