correction syntaxe
[lhc/ansible.git] / templates / nginx_http_server.j2
1 server {
2 listen 80;
3 server_name {{ config_ss_domain | default(SITE) }}.{{ DOMAIN }}.{{ TLD }};
4 disable_symlinks if_not_owner;
5 access_log /home/sites/log/nginx/{{ TLD }}/{{ DOMAIN }}/{{ SITE }}/access.log main buffer=32k;
6 error_log /home/sites/log/nginx/{{ TLD }}/{{ DOMAIN }}/{{ SITE }}/error.log warn;
7 root /home/sites/data/{{TLD }}/{{ DOMAIN }}/{{SITE }}/;
8 }