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
server { | |
server_name something.domain.com; | |
root /home/sites/something.domain.com/static; | |
client_max_body_size 2G; | |
location / { | |
try_files $uri @some_site; | |
} |