Nginx Usando KiB de memória compartilhada para o módulo push em

1

Estou configurando o nginx com o passageiro em um ubuntu 14.04 e o nginx está jogando

403 Forbidden error

Eu verifiquei as permissões e está tudo ok. Eu verifiquei o nginx conf e parece ok

user root;
worker_processes  1;
error_log  logs/error.log;

events {
    worker_connections  1024;
}

http {

    passenger_root /home/ubuntu/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/passenger-5.0.24;
    passenger_ruby /home/ubuntu/.rbenv/shims/ruby;
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;


    server {
        listen 80 default_server;
        server_name ;
        root /home/ubuntu/site/current/public;
        passenger_enabled on;
        rails_env production;
       index index.html;

        access_log  logs/access.log;

        location ~ ^/(assets)/  {
          gzip_static on;
          expires max;
          add_header Cache-Control public;
        }


       error_page 500 502 503 504 /500.html;
       client_max_body_size 4G;
       keepalive_timeout 10;



            }
}

mas o log do nginx continua aparecendo:

2016/02/18 03:28:57 [info] 13605#0: Using 32768KiB of shared memory for push module in /etc/nginx/nginx.conf:42 2016/02/18 03:31:11 [info] 13642#0: Using 32768KiB of shared memory for push module in /etc/nginx/nginx.conf:42

Alguém está com o mesmo problema?

    
por Daniel 18.02.2016 / 22:05

0 respostas