【linux中nginx的常用配置文件】linux中Nginx的常用配置(域名跳转 https cdn配置)

更新时间:2019-07-01    来源:Access    手机版     字体:

【www.bbyears.com--Access】

www跳转到主域名

 代码如下

server {
    listen 80;
    server_name www.111cn.net;

    access_log off;
    error_log off;

    return 301 http://tool.lu$request_uri;
}

http跳转到https

 代码如下

server {
    listen      80;
    server_name tool.lu;
    return 301 https://tool.lu$request_uri;
}

fastcgi

 代码如下     location ~ .php$ {
        try_files $uri =404;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

cdn

 代码如下

server {
    listen 80;
    server_name s1.tool.lu s2.tool.lu s3.tool.lu s4.tool.lu;

    root /data/html/tool.lu/static;
    index index.html;

    access_log off;
    error_log off;

    location / {
        concat on;
        concat_types text/css application/javascript;
        # 解决js语句不以分号结尾的第三方库
        concat_delimiter "nn";
        concat_max_files 20;

        expires 7d;
    }
}

本文来源:http://www.bbyears.com/shujuku/56029.html