计算机网络/计算机科学与应用/系统/运维/开发

配置文件的引入include方式

include文件可以放在任何地方,确保被保护的文件自身语法正确,然后指定文件的路径


# 通配符表示可以匹配多个文件

在conf/extra目录下创建conf结尾的文件

include /usr/local/nginx/conf/extra/*.conf


#测试配置文件是否正确

./nginx -t


主配置文件(注意其中的include 地方 引入其他配置)

user  wwwt;    # 服务器使用用户
worker_processes  1;    # 配置 worker 进程启动的数量,建议配置为 CPU 核心数
#error_log  logs/error.log;    # 全局错误日志
pid    /etc/nginx/logs/nginx.pid;     # 设置记录主进程 ID 的文件
 
 
events {
    # 单个后台 worker process 进程的最大并发链接数
    # 并发总数 max_clients = worker_professes * worker_connections
    worker_connections 4096;  ## Defaule: 1024
    # multi_accept on;  ## 指明 worker 进程立刻接受新的连接
}
 
# 主模式
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;
    # 重点,分文件放置路径
    include /etc/nginx/cs/*.conf;
 
    #gzip  on
    server {
        # the port your site will be served on
        listen 80;
        # the domain name it will serve for
        charset     utf-8;
 
        # max upload size
        client_max_body_size 75M;   # adjust to taste
 
        # Finally, send all non-media requests to the Django server.
 
        location / {
 
        }
 
    }
 
}


分配置文件

server {
    # the port your site will be served on
    listen 443;
    # the domain name it will serve for
    server_name  cs.oyz.cn; # substitute your machine's IP address or FQDN
 
    charset     utf-8;
    ssl   on;
    ssl_certificate      cert/*****.pem;
    ssl_certificate_key  cert/*****.key;
 
    # max upload size
    client_max_body_size 75M;   # adjust to taste
 
    # Django media
    location /media  {
        alias ********;  # your Django project's media files - amend as required
    }
    location /static {
        alias ********; # your Django project's static files - amend as required
    }
 
    location / {
        uwsgi_param UWSGI_SCHEME https;
        uwsgi_pass  127.0.0.1:9002;
        uwsgi_send_timeout 3600s;        # 指定向uWSGI传送请求的超时时间,完成握手后向    uWSGI传送请求的超时时间。
        uwsgi_connect_timeout 3600s;     # 指定连接到后端uWSGI的超时时间。
        uwsgi_read_timeout 3600s;        # 指定接收uWSGI应答的超时时间,完成握手后接收uWSGI应答的超时时间。
        include     /etc/nginx/uwsgi_params; # the uwsgi_params file you installed
    }
 
}


# 重新载入配置文件

/usr/local/nginx/sbin/nginx -s reload


访问,按规则匹配

业精于勤而荒于嬉,行成于思而毁于随

评论

^