Start moving installer scripts over

This commit is contained in:
2020-10-25 21:08:08 +01:00
parent ad1063a0cc
commit 4de7f24d8e
4 changed files with 51 additions and 17 deletions

10
installer/nginx.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80 default_server;
server_name install.abra.autonomic.zone;
location / {
root /var/www/abra-installer;
add_header Content-Type text/plain;
index installer;
}
}