Last active
September 8, 2016 15:53
-
-
Save kotishe/79682393bf725a3bce55fa344f911cd6 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
server { | |
listen 80; | |
server_name *site_name_here*, *.subdomain_or_alias*; | |
access_log /var/log/nginx/site_name_here.access.log main; | |
error_log /var/log/nginx/site_name_here.error.log; | |
index index.php index.html index.htm index.nginx-debian.html; | |
# Main location | |
location / { | |
root /var/www/*site_name_here*; | |
proxy_pass http://127.0.0.1:8080/; | |
proxy_redirect off; | |
include /etc/nginx/proxy_params; | |
} | |
# Static files location | |
location ~* \.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$ { | |
root /var/www/*site_dir_here*; | |
access_log off; | |
log_not_found off; | |
expires 7d; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment