Thanks trinsic for your help.
Yes fastcgi issue was helped by support here. had to edit values in index-fcgi.cgi and index_dlf.cgi and restart fastcgi.
regarding disabling the access log in web-host nginx: I can not find a specified log path in the usr/local/nginx/nginx.conf so if I put 'acess_log off;' in this file it will turn off access log?
Here is my current nginx.conf in web-host.
Compare to my file hosts I see "error_log logs/error.log crit;" is also missing from web host nginx.conf
Code: Select all
# cPanel Nginx Master configuration
user nobody;
error_log logs/error.log;
#Number of worker you need
worker_processes 4;
worker_rlimit_nofile 30000;
# How many connections a worker can handle maximum.
events {
worker_connections 50000;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
server_names_hash_max_size 10000;
server_names_hash_bucket_size 1024;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 10;
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/plain application/x-javascript text/xml text/css;
ignore_invalid_headers on;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
# include "/usr/local/nginx/conf/vhost.conf";
# include "/etc/cpnginx/cpanelproxy.conf";
include "/usr/local/nginx/conf/vidbull.conf";
include "/usr/local/nginx/conf/vhosts_extra.conf";
server {
listen 80;
location / {
proxy_pass http://localhost:8888;
proxy_set_header X-Real-IP $remote_addr;
}
}
}