LINUX.ORG.RU
ФорумAdmin

не работает скрипт на сервере nginx + fastcgi


0

0

подскажите в следующей ситуации: был написан скрипт на php+smarty. скрипт нормально работает на сервере с apache. но на сервере с nginx + fastcgi не работает - открывается пустая страница. могу привести вывод phpinfo, часть кода. в чем может быть проблема, куда копать?

apache настроен на 80 порту. nginx настроен на 88 порту.

В php.ini Установил для error_log = /etc/errorphp.log перезагрузил httpd. в site.ru/phpinfo.php log_errors on Открыл файл errorphp.log - видно что идет запись ошибок.

перезагрузил fcgi-процессы. а в site.ru:88/phpinfo.php log_errors off Открыл файл errorphp.log - запись ошибок не идет.

Как можно настроить вывод ошибок fcgi-процессов, nginx?


Ответ на: комментарий от drull

####################################################################### # # This is the main Nginx configuration file. # # More information about the configuration options is available on # * the English wiki - http://wiki.codemongers.com/Main # * the Russian documentation - http://sysoev.ru/nginx/ # #######################################################################

#---------------------------------------------------------------------- # Main Module - directives that cover basic functionality # # http://wiki.codemongers.com/NginxMainModule # #----------------------------------------------------------------------

user webmaster; worker_processes 1;

error_log /var/log/nginx/error.log; #error_log /var/log/nginx/error.log notice; #error_log /var/log/nginx/error.log info;

pid /var/run/nginx.pid;

#---------------------------------------------------------------------- # Events Module # # http://wiki.codemongers.com/NginxEventsModule # #----------------------------------------------------------------------

events { worker_connections 1024; }

#---------------------------------------------------------------------- # HTTP Core Module # # http://wiki.codemongers.com/NginxHttpCoreModule # #----------------------------------------------------------------------

http { include /etc/nginx/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; #tcp_nopush on;

#keepalive_timeout 0; keepalive_timeout 65;

#gzip on; # Load config files from the /etc/nginx/conf.d directory include /etc/nginx/conf.d/*.conf;

upstream backend { server 127.0.0.1:9000; server 127.0.0.1:9001; } # # The default server # server { listen 88; server_name _;

#charset koi8-r;

#access_log logs/host.access.log main;

location / { root /home/webmaster/www/abcmuzic.com; index index.html index.htm index.php; }

location ~* \.php(/|$) { root html; fastcgi_pass backend; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /home/webmaster/www/abcmuzic.com$fastcgi_script_name; fastcgi_param DOCUMENT_ROOT /home/webmaster/www/abcmuzic.com; include fastcgi_params; }

error_page 404 /404.html; location = /404.html { root /usr/share/nginx/html; }

# redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; }

# proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #}

# deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } }

stasbz
() автор топика
Ответ на: комментарий от stasbz

а на портах 9000 и 9001 пхп крутится? телнет туда что дает?

drull ★☆☆☆
()
Ответ на: комментарий от sysmouse

Или не передаются переменные скрипту.

в fastcgi_params присутствует QUERY_STRING ?

drull ★☆☆☆
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.