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