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