Skip to content

Instantly share code, notes, and snippets.

@infinityrobot
Created January 17, 2011 07:38
Show Gist options
  • Save infinityrobot/782592 to your computer and use it in GitHub Desktop.
Save infinityrobot/782592 to your computer and use it in GitHub Desktop.
worker_processes 1;
error_log logs/error.log;
events {
worker_connections 1024;
}
http {
passenger_root /usr/local/rvm/gems/ruby-1.9.2-p0/gems/passenger-3.0.2;
passenger_ruby /home/youni/.rvm/wrappers/ruby-1.9.2-p0/ruby;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
server {
server_name www.youni.me;
listen 80;
root /var/www/youni/public;
passenger_enabled on;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment