Update nginx config from example

This commit is contained in:
Robin 2022-05-28 12:48:16 +02:00
parent e7864d9a0c
commit 3e7fbc4c4a

View File

@ -35,23 +35,26 @@ http {
root /data/;
# Friendly URL support
location / {
try_files $uri $uri/ /index.php?route=$uri&$args;
}
# Deny access to some file types and directories
location ~ \.(tpl|cache|htaccess)$ {
return 403;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
location ^~ /node_modules/ {
return 403;
}
location ^~ /scripts/ {
return 403;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /tmp/fastcgi-pass.conf;