Created
October 5, 2012 23:53
-
-
Save joequery/3843136 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
| # Redirect everything to the main site. | |
| server { | |
| server_name www.mysite.com; | |
| return 301 http://mysite.com$request_uri; | |
| } | |
| server { | |
| server_name mysite.com; | |
| location / { try_files $uri @flaskapp; } | |
| location @flaskapp { | |
| include uwsgi_params; | |
| uwsgi_pass 127.0.0.1:5000; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment