1
0

Made refactoring for notes app (and other)

This commit is contained in:
2017-11-26 10:46:04 +03:00
parent 8ec89712f2
commit a59737b826
25 changed files with 205 additions and 221 deletions
Makefile
ansible
configuration.yml
roles
blocks
owner
defaults
tasks
php-app
defaults
tasks
templates
ssl-certificate
static-site
defaults
tasks
templates
homepage
notes
s2photo
symfony-app
defaults
tasks
templates

@@ -0,0 +1,15 @@
server {
server_name www.{{ static_site_domain }};
return 301 $scheme://{{ static_site_domain }}$request_uri;
}
server {
listen 80;
server_name {{ static_site_domain }};
location / {
root {{ static_site_web_root }};
index index.html;
try_files $uri $uri/ =404;
}
}