Skip to content

Instantly share code, notes, and snippets.

@loopj
Created August 5, 2012 22:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save loopj/3267466 to your computer and use it in GitHub Desktop.
Save loopj/3267466 to your computer and use it in GitHub Desktop.
Nginx SPDY configuration example
server {
listen 443 ssl spdy default_server;
server_name example.com;
ssl_certificate /etc/ssl/certs/my.ssl.crt;
ssl_certificate_key /etc/ssl/private/my.ssl.key;
root /mysite/current/public;
passenger_enabled on;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment