Correction : nginx : échappement regexp.
[lhc/ateliers.git] / etc / nginx / site.d / lhc-www / site.conf
index 158a7a8..7ed7d17 100644 (file)
@@ -5,7 +5,7 @@ client_max_body_size 10m;
 location / {
        index index.html index.htm index.php;
  }
-location ~* ^.+.(css|gif|html|ico|jpeg|js|jpg|png|txt|xml)$ {
+location ~* ^.+\.(css|gif|html|ico|jpeg|js|jpg|png|txt|xml)$ {
        access_log off;
        expires 30d;
        log_not_found off;
@@ -37,7 +37,6 @@ location ~ \.php$ {
        fastcgi_cache_valid 404 10m;
        fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
        fastcgi_index index.php;
-       fastcgi_max_temp_file_size 2M;
        fastcgi_no_cache $no_cache;
        fastcgi_param REDIRECT_STATUS 200;
                # NOTE: PHP only, required if PHP was built with --enable-force-cgi-redirect
@@ -45,7 +44,7 @@ location ~ \.php$ {
        fastcgi_pass_header Set-Cookie;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        
-       fastcgi_pass unix:/run/php5/fpm/lhc-www;
+       fastcgi_pass unix:/run/php5/fpm/lhc_www;
  }
 
 # vim: ft=sh