f0dadc49a773e5dd3ef3ed0bf688525eb11a6b19
[lhc/ateliers.git] / etc / nginx / site.d / lhc-wiklou / site.conf
1 server_name
2 devel.wiklou.org
3 wiklou.heureux-cyclage.org
4 wiklou.org
5 www.wiklou.org;
6 index index.php;
7
8 client_body_buffer_size 8k;
9 client_max_body_size 10m;
10
11 location / {
12 index index.html index.htm index.php;
13 }
14 location ~ \.php$ {
15 include /etc/nginx/conf.d/fastcgi.conf;
16 fastcgi_index index.php ;
17 fastcgi_param REDIRECT_STATUS 200;
18 fastcgi_split_path_info ^(.+\.php)(/.+)$;
19
20 fastcgi_pass unix:/run/php5/fpm/lhc_wiklou;
21 }
22 location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
23 try_files $uri /index.php;
24 expires max;
25 log_not_found off;
26 }
27 # vim: ft=sh