Add ansible tasks

This commit is contained in:
2016-08-27 10:37:49 +03:00
parent dc3d92a792
commit 582ee4342b
14 changed files with 127 additions and 0 deletions

View File

@ -0,0 +1,10 @@
server {
listen 80;
server_name {{ site.domain }} www.{{ site.domain }};
location / {
root /var/www/{{ site.www_dir }}/current/web;
index index.html;
try_files $uri /index.html;
}
}