๐Ÿ“— Ansible playbooks and roles for building an idempotent, interconnected and scalable infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
ansible-playbooks/roles/web/templates/default.j2

13 lines
294 B

location / {
root {{ (webroot_dir ~ '/static') | quote }};
try_files $uri @legacy_site;
}
location /le-game {
return 301 https://vk.com/app5898182_-200204055#s=1306418;
}
location @legacy_site {
proxy_pass http://85.119.149.96/$request_uri;
proxy_set_header Host $host;
}