Skip to content

Instantly share code, notes, and snippets.

@hiendnguyen
Last active March 31, 2017 19:19
Show Gist options
  • Save hiendnguyen/a975ba23a4d20926c7c483604389a810 to your computer and use it in GitHub Desktop.
Save hiendnguyen/a975ba23a4d20926c7c483604389a810 to your computer and use it in GitHub Desktop.
NGINX Server Block File
server {
listen 80;
server_name vndeveloper.com www.vndeveloper.com;
root /var/www/vndeveloper.com/html;
index index.html index.htm index.php;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php?$args;
# Turn auto indexing on
autoindex on;
# Show file sizes rounded in kb/mb/gb
autoindex_exact_size off;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
# Mitigate https://httpoxy.org/ vulnerabilities
fastcgi_param HTTP_PROXY "";
fastcgi_pass unix:/run/php-fpm/www.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
# Cache static files for as long as possible
location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
access_log off;
log_not_found off;
expires max;
}
# Deny public access to wp-config.php
location ~* wp-config.php {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment