1
0
Fork 0
This repository has been archived on 2021-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
dennogumi.org-archive/_posts/2014-04-26-notes-to-self-nginx-piwigo-rewrite-rules.markdown

51 lines
1.3 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
author: einar
comments: false
date: 2014-04-26 08:31:57+00:00
layout: page
slug: notes-to-self-nginx-piwigo-rewrite-rules
title: 'Notes to self: nginx Piwigo rewrite rules'
wordpress_id: 1315
categories:
- General
- Linux
post_format:
- Aside
tags:
- nginx
- piwigo
- rewrite
---
This was inspired by [this forum thread](http://piwigo.org/forum/viewtopic.php?id=20449) on the Piwigo forums. Set up rewrite rules in nginx where "piwigo" is the path the gallery lies in:
{% highlight nginx %}
location @rewrite {
rewrite ^/piwigo/picture((/|$).*)$ /piwigo/picture.php$1 last;
rewrite ^/piwigo/index((/|$).*)$ /piwigo/index.php$1 last;
# The following is needed for batch operations which use i.php
rewrite ^/piwigo/i((/|$).*)$ /piwigo/i.php$1 last;
}
location /piwigo {
index index.php;
try_files $uri $uri/ @rewrite;
}
location ~ ^(?<script_name>.+?\.php)(?<path_info>/.*)?$ {
try_files $script_name = 404;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
{% endhighlight %}
Lastly, add the relevant information to the Piwigo configuration (LocalFiles editor):
{% highlight php %}
$conf['php_extension_in_urls'] = false;
$conf['question_mark_in_urls'] = false;
{% endhighlight %}