Use NextGEN Gallery on Nginx server
-
Hi to all.
It is possible to use the NextGen on nginx server? Because I have a problem on view the slideshow gallery. This is an example of my gallery:If you try to access it redirect at article, and the “next” and “prev” buttons of the gallery doesn’t works.
My permalink setting is: /%category%/%postname%.html
My configuration nginx for the site is:server { listen *:80; server_name www.ntacalabria.it ntacalabria.it; access_log /var/log/nginx/wordpress.access.log; error_log /var/log/nginx/wordpress.error.log; root /home/ftp/wordpress; index index.html index.htm index.php; include /etc/nginx.wp/restrictions.conf; include /etc/nginx.wp/wordpress.conf; rewrite ^/sitemap_index\.xml$ /index.php?sitemap=1 last; rewrite ^/([^/]+?)-sitemap([0-9]+)?\.xml$ /index.php?sitemap=$1&sitemap_n=$2 last; rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.xml$ "/index.php?xml_sitemap=params=$2" last; rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.xml\.gz$ "/index.php?xml_sitemap=params=$2;zip=true" last; rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.html$ "/index.php?xml_sitemap=params=$2;html=true" last; rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.html.gz$ "/index.php?xml_sitemap=params=$2;html=true;zip=true" last; try_files $uri $uri/ /index.php?q=$uri&$args; try_files $uri $uri/ /index.php?$is_args$args /index.php?q=$uri&$args; ... }
Thank you very much for your time I hope to find a solution ??
- The topic ‘Use NextGEN Gallery on Nginx server’ is closed to new replies.