bcarlin.net/content/blog/001-setup-nginx-for-mediawiki/index.en.md

47 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2025-06-07 02:33:02 +02:00
---
title: Setup Nginx for Mediawiki
2025-06-20 02:33:45 +02:00
slug: 1-setup-nginx-for-mediawiki
2025-06-07 02:33:02 +02:00
date: "2010-09-15T00:00:00+02:00"
2025-06-20 02:33:45 +02:00
categories: [DevOps]
2025-06-07 02:33:02 +02:00
tags:
2025-06-20 02:33:45 +02:00
- mediawiki
- nginx
2025-06-07 02:33:02 +02:00
summary: >
A simple configuration to serve Mediawiki with Nginx and FastCGI
---
Two weeks ago, I migrated a server from Apache/mod_php to nginx/php-fpm. Only
today did i succeed to remove all side effects. The latest one:
Static files must not go through php-fpm, but a simple test on extensions
is ineffective, as url like `http://server/File:name_of_the_file.png`
must be processed by PHP.
Here is my final setup, that corrects all the errors I encountered:
```nginx
server {
listen 80;
server_name server_name;
index index.php;
root /path/to/www/;
# Serve static files with a far future expiration
# date for browser caches
location ^~ /images/ {
expires 1y;
}
location ^~ /skins/ {
expires 1y;
}
# Pass the request to php-cgi
location / {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_index index.php;
include fastcgi_params;
}
}
```