Modifications: etc/nginx/site.d/lhc-www/site.conf - Les fichiers
[lhc/ateliers.git] / etc / nginx / site.d / lhc-www / site.conf
index cac567d..2fe799c 100644 (file)
@@ -1,7 +1,5 @@
 server_name
-    www.heureux-cyclage.org
-    heureux-cyclage.org
-    devel.heureux-cyclage.org;
+    www.heureux-cyclage.org;
 root /home/www/data/lhc-www/www;
 index index.php;
 
@@ -11,6 +9,9 @@ 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 ;
@@ -19,4 +20,9 @@ location ~ \.php$ {
 
        fastcgi_pass unix:/run/php5/fpm/lhc_www;
 }
+error_page 404 = @spip;
+
+location @spip {
+       rewrite ^/(.*)(\.html)?$  /spip.php?url_propre=$1&$args last;
+}
 # vim: ft=sh