ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Отображение карти нок.



Roxis wrote:
покажите всю конфигурацию которую вы используте
и опишите, что именно вы хотите от nginx




nginx + php(fastCGI)

текущий конфиг nginx.conf

worker_processes  3;

error_log  logs/error.log;
error_log  logs/error.log  notice;

pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       conf/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] $request '
                      '"$status" $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;

    sendfile        on;

    keepalive_timeout  65;

    server {
        listen      8000;
        server_name     www.donbasstele.com;

        location / {
            root   /usr/local/www/donbasstele.com;
            index  index.php index.html;


           fastcgi_pass   localhost:8888;
           fastcgi_index  index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/www/donbasstele.com$fastcgi_script_name;
           fastcgi_param  DOCUMENT_ROOT    /usr/local/www/donbasstele.com;
           fastcgi_param  QUERY_STRING     $query_string;
           fastcgi_param  REQUEST_METHOD   $request_method;
           fastcgi_param  CONTENT_TYPE     $content_type;
           fastcgi_param  CONTENT_LENGTH   $content_length;


        }
}

php с параметрами
--enable-fastcgi
--with-openssl
--with-pgsql
--with-mysql
--enable-force-cgi-redirect

Хочу разобраться как правильно настроить nginx + php.
Вдальнейшем - для одних виртуальных серверов использовать php4,
для других php5, для третьих - только html.



 




Copyright © Lexa Software, 1996-2009.