Added nixpress WP+PHP+MariaDB+NGINX+REDIS

This commit is contained in:
2025-05-11 21:57:59 +03:00
parent 4a5561d57c
commit 7f5788c964
14 changed files with 465 additions and 29 deletions

View File

@@ -0,0 +1,23 @@
location / {
try_files $uri $uri/ /index.php?$args ;
}
location ~ /\.ht {
deny all;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}