ini nginx的:配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini nginx的:配置相关的知识,希望对你有一定的参考价值。

server {
    listen 80;
    listen [::]:80;
    server_name dev.1dailian.com;
    index index.php index.html index.htm default.html default.htm default.php;
    root /data/workbench/www/1dailian/public;

    client_max_body_size 20M;

    # rewrite root domain to ssl url
    rewrite ^/$ https://dev.1dailian.com/ permanent;

    location ~ .*\.(php|php5)?$ {
        fastcgi_pass 127.0.0.1:9000;
        # fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi.conf;
    }

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    access_log /data/workbench/logs/dailian_access.log;
    error_log /data/workbench/logs/dailian_error.log;
    
    # font, json support react fetch
    location ~* \.(eot|ttf|woff|woff2|json)$ {
        add_header Access-Control-Allow-Origin *;
    }
}

以上是关于ini nginx的:配置的主要内容,如果未能解决你的问题,请参考以下文章

ini Nginx最佳配置(基本配置)

ini nginx的:配置

ini nginx的域名配置参考

ini nginx的前后端分离配置文件

ini NGINX的SSL配置代码段

ini 用于nginx的全开CORS配置