Created
October 11, 2015 23:31
-
-
Save zachskaggs/8737c75b9ab2df3a120c to your computer and use it in GitHub Desktop.
This file contains 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
if (!-e $request_filename) | |
{ rewrite ^(.*)$ /index.php?q=$1 last; break; | |
} | |
location ~ \.css { | |
add_header Content-Type text/css; | |
} | |
location ~ \.js { | |
add_header Content-Type application/x-javascript; | |
} | |
location ~ \.tff { | |
add_header Content-Type font/opentype; | |
} | |
location ~ \.png { | |
add_header Content-Type image; | |
} | |
location ~ \.woff { | |
add_header Content-Type font/opentype; | |
} | |
location ~ \.jpg { | |
add_header Content-Type image; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment