Skip to content

Instantly share code, notes, and snippets.

@Jmoati
Created September 9, 2020 08:52
Show Gist options
  • Save Jmoati/a381462bee2e2336131e71f4f3193247 to your computer and use it in GitHub Desktop.
Save Jmoati/a381462bee2e2336131e71f4f3193247 to your computer and use it in GitHub Desktop.
server {
root /app/public;
index index.php;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass php:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment