ПРОЕКТЫ 


  АРХИВ 


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]

GET / по IP



 FreeBSD-7.0, nginx-0.6.31,

cat nginx.conf| g -v \#



user  www;

worker_processes  1;



error_log  /var/log/nginx-error.log  info;

events {

    worker_connections  1024;

}

http {

    include       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  /var/log/nginx-access.log  main;

    sendfile        on;

    keepalive_timeout  0;

    gzip  on;

    server {

        listen       80 default;

        server_name localhost;

        location / {

            root /usr/local/www/phpMyAdmin ;

            index   index.php index.html index.htm;

            autoindex off;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   /usr/local/www/nginx-dist;

        }

       location ~ \.php$ {

            fastcgi_pass   127.0.0.1:8888;

            fastcgi_index  index.php ;

            fastcgi_param  SCRIPT_FILENAME 
/usr/local/www/phpMyAdmin$fastcgi_script_name;

            include        fastcgi_params;

        }

        location ~ /\.ht {

            deny  all;

        }

    }



}



если в браузере ввожу ДНС имя сервера.. то нормально окрива?т index.php 
phpmyadmin-а ..

но если ввести IP сервера то просто вида?т в браузере содержание PHP-файла.. 
тоесть 

"<?php

/* vim: set expandtab sw=4 ts=4 sts=4: */

.....

"

ето нормально ??



 




Copyright © Lexa Software, 1996-2009.