ini CORS-nginx.conf

Posted

tags:

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

#
# Wide-open CORS config for nginx
#
location / {

     if ($request_method = 'OPTIONS') {

        add_header 'Access-Control-Allow-Origin' '*';
        
        #
        # Om nom nom cookies
        #

        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        
        #
        # Custom headers and headers various browsers *should* be OK with but aren't
        #

        add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
        
        #
        # Tell client that this pre-flight info is valid for 20 days
        #

        add_header 'Access-Control-Max-Age' 1728000;
        add_header 'Content-Type' 'text/plain charset=UTF-8';
        add_header 'Content-Length' 0;

        return 204;
     }

     if ($request_method = 'POST') {

        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

     }

     if ($request_method = 'GET') {

        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Credentials' 'true';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

     }

}

centos下php.ini配置项

【中文标题】centos下php.ini配置项【英文标题】:php.ini configuration items under centos 【发布时间】:2012-04-16 19:22:31 【问题描述】:

配置文件路径:/etc/php.ini

/etc/php.d 下的其他 .ini 文件:curl.ini、fileinfo.ini、gd.ini、json.ini、mysql.ini、mysqli.ini、pdo.ini、 pdo_mysql.ini, pdo_sqlite.ini, phar.ini,sqlite3.ini,zip.ini

问题是我在 .ini 文件下找不到“post_max_size”、“disable_functions”等这些项目的配置位置,我应该自己将它们添加到 php.ini 中吗?

PS:windows或ubuntu下这些配置项好像在php.ini里,对吗?

【问题讨论】:

【参考方案1】:

你可以从 php functon ini_set 做

请看这个

http://php.net/manual/en/function.ini-set.php

【讨论】:

【参考方案2】:

核心配置放在php.ini文件中,扩展配置放在php.d文件夹中。

【讨论】:

也就是说,我应该自己将它们添加到php.ini文件中? 我可以再评论一下这个答案吗?

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

ini CORS-nginx.conf

php如何修改ini文件

centos下php.ini配置项

在Delphi下,怎样在DLL里读取ini文件的内容

vb读写ini文件

在Delphi下,如何在DLL里攫取ini文件的内容