Skip to content

Instantly share code, notes, and snippets.

@dcalixto
Forked from loopj/nginx-config-spdy-example
Created September 30, 2015 17:30
Show Gist options
  • Save dcalixto/32c92ee31410db8f52ab to your computer and use it in GitHub Desktop.
Save dcalixto/32c92ee31410db8f52ab 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