Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From my blog post which was pretty much on this exact setup <a href="http://blog.nikoroberts.com/post/45834702235/setting-up-a-rails-32-server-in-the-rackspace" rel="nofollow">http://blog.nikoroberts.com/post/45834702235/setting-up-a-rails-32-server-in-the-rackspace</a></p> <p>You are at least missing <code>passenger_enabled on;</code></p> <p>My nginx.conf</p> <pre><code>worker_processes 4; events { worker_connections 1024; } http { passenger_root /home/deployer/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17; passenger_ruby /home/deployer/.rvm/wrappers/ruby-1.9.3-p194/ruby; include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; client_max_body_size 5M; gzip on; gzip_http_version 1.1; gzip_comp_level 1; gzip_disable "MSIE [1-6]\.(?!.*SV1)"; gzip_proxied any; gzip_vary on; gzip_min_length 500; gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; passenger_default_user deployer; #fast passenger respawn passenger_pool_idle_time 1000; server { listen 80; charset utf-8; server_name localhost; root /var/www/contactguru/current/public; passenger_enabled on; rails_env production; # fast passenger and rails respawn # from http://stackoverflow.com/a/2329221 rails_spawn_method smart; rails_app_spawner_idle_time 0; rails_framework_spawner_idle_time 0; location ~ ^/(assets)/ { root /var/www/contactguru/current/public; gzip_static on; expires max; add_header Cache-Control public; # access_log /dev/null; } } } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload