AjoutĀ : etc/nginx/org/heureux-cyclage/clavette-lyon
[lhc/admin.git] / srv / ateliers / etc / nginx / org / heureux-cyclage / clavette-lyon / common.conf.m4
diff --git a/srv/ateliers/etc/nginx/org/heureux-cyclage/clavette-lyon/common.conf.m4 b/srv/ateliers/etc/nginx/org/heureux-cyclage/clavette-lyon/common.conf.m4
new file mode 100644 (file)
index 0000000..350bb67
--- /dev/null
@@ -0,0 +1,28 @@
+server_name
+    clavette-lyon.heureux-cyclage.org;
+root /home/www/data/org/heureux-cyclage/clavette-lyon/www/;
+index index.php;
+
+client_body_buffer_size 8k;
+client_max_body_size 10m;
+
+location ~^/(tmp|config)/{
+       return 403;
+}
+location ~ \.html$ {
+       log_not_found off;
+}
+location ~ \.php$ {
+       include /etc/nginx/conf.d/fastcgi.conf;
+       fastcgi_index  index.php ;
+       fastcgi_param REDIRECT_STATUS 200;
+       fastcgi_split_path_info ^(.+\.php)(/.+)$;
+
+       fastcgi_pass unix:/run/php5/fpm/lhc_clav_lyon;
+}
+error_page 404 = @spip;
+
+location @spip {
+       rewrite ^/(.*)(\.html)?$  /spip.php?url_propre=$1&$args last;
+}
+# vim: ft=sh