Created
September 16, 2011 14:39
-
-
Save DCarper/1222256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 443; | |
| ssl on; | |
| ssl_certificate /opt/nginx/conf/server.crt; | |
| ssl_certificate_key /opt/nginx/conf/server.key; | |
| server_name www.sub.domain.com; | |
| root /Users/Dan/code/my_app/public; | |
| passenger_enabled on; | |
| keepalive_timeout 70; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment