What should be the NGINX settings for Drupal 7 website
Following NGINX server block can be used to run Drupal 7.
server {
server_name YOURWEBSITENAME;
root /var/www/html/drupal7;
index index.php;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}