43 lines
630 B
Nginx Configuration File
43 lines
630 B
Nginx Configuration File
|
autoindex off;
|
||
|
|
||
|
location /app {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location /bin {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location /bootstrap {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location /resources {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location /storage {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location /vendor {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location /logs {
|
||
|
return 403;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
try_files $uri /index.php$is_args$args;
|
||
|
}
|
||
|
|
||
|
location ~ \.php {
|
||
|
try_files $uri =404;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_pass 127.0.0.1:9000;
|
||
|
}
|