Ajout : garradin.
[lhc/ateliers.git] / etc / nginx / site.d / cyclo-ivry-garradin / site.conf
1 server_name
2 ivry.garradin.cyclocoop.org;
3 root /home/www/data/cyclo-ivry-garradin/www;
4
5 client_body_buffer_size 8k;
6 client_max_body_size 10m;
7
8 location / {
9 index index.html index.htm index.php;
10 }
11 location ~ /\. {
12 access_log off;
13 deny all;
14 log_not_found off;
15 }
16 location ~* ^.+\.php(|/.*)$ {
17 include /etc/nginx/conf.d/fastcgi.conf;
18 set $no_cache "0";
19 if ($request_method !~ ^(GET|HEAD)$) {
20 # NOTE: if non GET/HEAD, don't cache and mark user as uncacheable for 1 second via cookie.
21 set $no_cache "1";
22 }
23 if ($no_cache = "1") {
24 # NOTE: drop no cache cookie if need be (for some reason, add_header fails if included in prior if-block).
25 add_header Set-Cookie "_mcnc=1; Max-Age=2; Path=/";
26 add_header X-Microcachable "0";
27 }
28 if ($http_cookie ~* "_mcnc") {
29 # NOTE: bypass cache if no-cache cookie is set
30 set $no_cache "1";
31 }
32 fastcgi_cache_bypass $no_cache;
33 fastcgi_cache_use_stale updating;
34 fastcgi_cache_valid 200 10s;
35 fastcgi_cache_valid 404 10m;
36 fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
37 fastcgi_index index.php;
38 fastcgi_split_path_info ^(.+\.php)(/.+)$;
39 fastcgi_param PATH_INFO $fastcgi_path_info;
40 fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
41 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
42 fastcgi_no_cache $no_cache;
43 fastcgi_param REDIRECT_STATUS 200;
44 # NOTE: PHP only, required if PHP was built with --enable-force-cgi-redirect
45 fastcgi_pass_header Cookie;
46 fastcgi_pass_header Set-Cookie;
47
48 fastcgi_param GARRADIN_CONFIG /home/www/data/cyclo-ivry-garradin/config.php;
49
50 fastcgi_pass unix:/run/php5/fpm/cyclo_ivry_garradin;
51 }
52 location ~* ^.+\.(css|gif|html|ico|jpeg|js|jpg|png|txt|xml)$ {
53 access_log off;
54 expires 30d;
55 log_not_found off;
56 }
57
58 # vim: ft=sh