tờ ròm
Tôi yêu Việt Nam
28.09.2022 - 07:25
Cấu hình nginx
server {
listen 80;
server_name yourdomain.dot;
root /yourRoot;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
rewrite ^/cms/template/(.*)$ /index.php break;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php74/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~ ^/(assets/template|libs) {
deny all;
return 403;
}
}
Cấu hình nginx (đang đọc)