Skip to content

Instantly share code, notes, and snippets.

@Tha14
Tha14 / ISPConfig Docroot for Nginx with Laravel project
Last active May 28, 2022 14:02
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;