在哪里放置NGINX主机配置文件?

时间:2012-07-10 14:43:58

标签: nginx yii php winginx

我已经使用WINGINX在我的Windows机器上安装NGINX,PHP-FPM,MySQL,MongoDB,NodeJS和MemcacheD。

Yii Framework documentation我找到了以下主机配置代码:

server {
    set $host_path "/www/mysite";
    access_log  /www/mysite/log/access.log  main;

    server_name  mysite;
    root   $host_path/htdocs;
    set $yii_bootstrap "index.php";

    charset utf-8;

    location / {
        index  index.html $yii_bootstrap;
        try_files $uri $uri/ $yii_bootstrap?$args;
    }

    location ~ ^/(protected|framework|themes/\w+/views) {
        deny  all;
    }

    #avoid processing of calls to unexisting static files by yii
    location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
        try_files $uri =404;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php {
        fastcgi_split_path_info  ^(.+\.php)(.*)$;

        #let yii catch the calls to unexising PHP files
        set $fsn /$yii_bootstrap;
        if (-f $document_root$fastcgi_script_name){
            set $fsn $fastcgi_script_name;
        }

        fastcgi_pass   127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fsn;

        #PATH_INFO and PATH_TRANSLATED can be omitted, but RFC 3875 specifies them for CGI
        fastcgi_param  PATH_INFO        $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fsn;
    }

    location ~ /\.ht {
        deny  all;
    }
}

我需要在哪里存储此代码?

我已使用托管服务商创建:http://project.loc,文件正确显示:index.php(位于:/winginx/home/project.loc/pubic_html)。

我尝试将代码放在几个指令中:

  • / winginx / CONF
  • / winginx / CONF /虚拟主机
  • /winginx/home/project.loc

..但不起作用。

1 个答案:

答案 0 :(得分:1)

Wingix Documentation解释了如何执行此操作:

  

你应该在winginx \ conf \ vhosts文件夹中创建一个单独的配置   名为域名加.conf的文件,例如mysite.local.conf。

     

添加或编辑配置后,您应该重启Winginx,   双击start-winginx.exe。

     

如果操作后出现问题,请阅读   winginx \日志\ error.log中。