Skip to content

Instantly share code, notes, and snippets.

@mdamaceno
Created November 20, 2017 18:57
Show Gist options
  • Save mdamaceno/7cd84e337e02711684eb685e251c2ff0 to your computer and use it in GitHub Desktop.
Save mdamaceno/7cd84e337e02711684eb685e251c2ff0 to your computer and use it in GitHub Desktop.
server {
listen 80;
root /app/dir;
index index.php index.html;
client_max_body_size 20M;
send_timeout 300;
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; allow all; }
location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
expires max;
log_not_found off;
}
location / {
#try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php-7.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_read_timeout 300;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment