torrentflux nginx possible?

Status
Not open for further replies.
13 comments
Well what's on your server block on nginx.conf?


PHP:
user              nginx nginx;
worker_processes  2;


error_log         logs/error.log;

pid               logs/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    client_max_body_size 64M;
    sendfile        on;
    tcp_nopush      on;

    keepalive_timeout  3;

    gzip  on;
    gzip_comp_level 2;
    gzip_proxied any;
    gzip_types      text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    server_tokens off;

    include /etc/nginx/conf.d/*;
}
 
don't forget to re-chown the files/folder to nginx

i was having this kind of problem with apache then i was just re-chown them
 
Status
Not open for further replies.
Back
Top