X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=etc%2Fnginx%2Fsite.d%2Flhc-www%2Fsite.conf;h=13786a66b744639da283293652654ee0d782039a;hb=82a43a9c95892ecfa8bad1a72b490ad0bf60cd3b;hp=a866306ffa517380782434ecdce0e1977600501c;hpb=2d48a198262604098443c6a90e58b0084600a4d7;p=lhc%2Fateliers.git diff --git a/etc/nginx/site.d/lhc-www/site.conf b/etc/nginx/site.d/lhc-www/site.conf index a866306..13786a6 100644 --- a/etc/nginx/site.d/lhc-www/site.conf +++ b/etc/nginx/site.d/lhc-www/site.conf @@ -3,7 +3,6 @@ server_name www.heureux-cyclage.org heureux-cyclage.org; client_body_buffer_size 8k; client_max_body_size 10m; location / { - root /home/www/pub/lhc-www; index index.html index.htm index.php; } location ~* ^.+.(css|gif|html|ico|jpeg|js|jpg|png|txt|xml)$ { @@ -37,13 +36,15 @@ location ~ \.php$ { fastcgi_cache_valid 200 10s; fastcgi_cache_valid 404 10m; fastcgi_ignore_headers Cache-Control Expires Set-Cookie; - fastcgi_max_temp_file_size 2M; + fastcgi_index index.php; fastcgi_no_cache $no_cache; + fastcgi_param REDIRECT_STATUS 200; + # NOTE: PHP only, required if PHP was built with --enable-force-cgi-redirect fastcgi_pass_header Cookie; 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