Avatar
tờ ròm Tôi yêu Việt Nam

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; #sửa lại
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
    location ~ ^/(assets/template|libs) {
        deny all;
        return 403;
    }
}
  • BBcode:
  • Markdown: