Подружить FastCGI (Nginx + PHP-FPM) с Joomla 3

NOIP

Гуру форума
Регистрация
17 Фев 2008
Сообщения
327
Реакции
77
Здравствуйте, может быть есть у кого рабочий конфиг для Joomla 3? под FastCGI (Nginx + PHP-FPM).

Мой текущий конфиг, есть проблемы с админкой, не всегда открываются разделы админки и перебрасывает просто на главную админки. Может есть у кого рабочий конфиг? или может кто подскажет что здесь можно попробовать сделать? по логам все чисто, ошибок нет.

Код:
server {
    server_name site.ru www.site.ru;
    charset UTF-8;
    index index.php index.html;
    disable_symlinks if_not_owner from=$root_path;
    include /etc/nginx/vhosts-includes/*.conf;
    include /etc/nginx/vhosts-resources/site.ru/*.conf;
    access_log /var/www/httpd-logs/site.ru.access.log;
    error_log /var/www/httpd-logs/site.ru.error.log notice;
    ssi on;
    set $root_path /var/www/rootru/data/www/site.ru;
    root $root_path;
    listen 00.00.00.00:80;
    location / {
    try_files $uri $uri/ /index.php?q=$uri&$args;
    #   try_files $uri $uri/ /index.php?args;
        location ~ [^/]\.ph(p\d*|tml)$ {
            try_files /does_not_exists @php;
        }
    }
 
 
}


server {
    server_name site.ru www.site.ru;
    ssl_certificate "/var/www/httpd-cert/rootru/site.ru_le1.crtca";
    ssl_certificate_key "/var/www/httpd-cert/rootru/site.ru_le1.key";
    ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
    ssl_prefer_server_ciphers on;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    add_header Strict-Transport-Security "max-age=31536000;";
    ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
    charset UTF-8;
    index index.php;
    disable_symlinks if_not_owner from=$root_path;
    include /etc/nginx/vhosts-includes/*.conf;
    include /etc/nginx/vhosts-resources/site.ru/*.conf;
    access_log /var/www/httpd-logs/site.ru.access.log;
    error_log /var/www/httpd-logs/site.ru.error.log notice;
    ssi on;
    set $root_path /var/www/rootru/data/www/site.ru;
    root $root_path;
    location / {
    try_files $uri $uri/ /index.php?q=$uri&$args;
        location ~ [^/]\.ph(p\d*|tml)$ {
            try_files /does_not_exists @php;
        }
    }
    listen 00.00.00.00:443 ssl http2;
    location @php {
        fastcgi_index index.php;
        fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f mail@root.ru";
        fastcgi_pass unix:/var/www/php-fpm/rootru.sock;
        fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
        try_files $uri =404;
        include fastcgi_params;
    }
 
    gzip  on;
gzip_buffers 16 8k;
gzip_comp_level 6;
gzip_http_version 1.1;
gzip_min_length 256;
gzip_proxied any;
gzip_vary on;
gzip_types
    text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml
    text/javascript application/javascript application/x-javascript
    text/x-json application/json application/x-web-app-manifest+json
    text/css text/plain text/x-component
    font/opentype application/x-font-ttf application/vnd.ms-fontobject
    image/x-icon;
gzip_disable  "msie6";
 
 
 
 
 
 
}
 
Назад
Сверху