Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Tha14/725f504fc6bfcce8511e43ec858efc0b to your computer and use it in GitHub Desktop.
Save Tha14/725f504fc6bfcce8511e43ec858efc0b to your computer and use it in GitHub Desktop.
ISPConfig nginx Directive for Laravel projects. Working using /public directory.
##subroot public ##
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
{FASTCGIPASS}
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment