0

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

Yii 框架文档中,我发现了以下主机配置代码:

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/vhosts
  • /winginx/home/project.loc

..但没有一个工作。

4

1 回答 1

1

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

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

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

如果这些操作后出现问题,请阅读 winginx\logs\error.log。

于 2012-07-10T15:41:18.170 回答