Move the /static handler into the base and have nginx serve the Docker ping endpoint

This commit is contained in:
Joseph Schorr 2014-10-02 16:04:23 -04:00
parent c682899861
commit a1470460a7
3 changed files with 10 additions and 10 deletions

View file

@ -23,10 +23,5 @@ http {
ssl_protocols SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
ssl_prefer_server_ciphers on;
location /static/ {
# checks for static file, if not found proxy to app
alias /static/;
}
}
}