diff options
author | bnewbold <bnewbold@robocracy.org> | 2011-04-22 07:03:55 +0000 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2011-04-22 07:03:55 +0000 |
commit | a50e81a087fc55afcfd75d03bbb1a2a28eef72cd (patch) | |
tree | cec8f5c8ad7d0d2657f112d048d443b872434c46 /doc | |
parent | 650b25a5d804bbca398c7de887897915b3f4e4c5 (diff) | |
download | piccast-a50e81a087fc55afcfd75d03bbb1a2a28eef72cd.tar.gz piccast-a50e81a087fc55afcfd75d03bbb1a2a28eef72cd.zip |
updated static fallthrough system
Diffstat (limited to 'doc')
-rw-r--r-- | doc/nginx.conf | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/nginx.conf b/doc/nginx.conf new file mode 100644 index 0000000..e2e4e3c --- /dev/null +++ b/doc/nginx.conf @@ -0,0 +1,29 @@ +server { + listen 80; + listen [::]:80; + server_name piccast.memeschemes.com; + + access_log /var/log/nginx/access.log; + + location / { + # Fallthrough to django if file not found + fastcgi_param PATH_INFO $fastcgi_script_name; + fastcgi_param REQUEST_METHOD $request_method; + fastcgi_param QUERY_STRING $query_string; + fastcgi_param SERVER_NAME $server_name; + fastcgi_param SERVER_PORT $server_port; + fastcgi_param SERVER_PROTOCOL $server_protocol; + fastcgi_param CONTENT_TYPE $content_type; + fastcgi_param CONTENT_LENGTH $content_length; + fastcgi_pass_header Authorization; + fastcgi_intercept_errors off; + if (!-f $request_filename) { + fastcgi_pass unix:/srv/http/piccast.memeschemes.com/django.sock; + break; + } + + root /srv/http/piccast.memeschemes.com/www; + index index.html index.htm; + } +} + |