2015-08-31 22:01:35 +02:00
# Ansible Playbook
2015-12-09 23:44:14 +01:00
Ansible playbook for base and initial configuration of the web server hosting my personal websites. After successful execution of this playbook, however, there is still some manual work to import databases, copy site content, etc.
2014-08-16 23:35:57 +02:00
2015-08-31 22:01:35 +02:00
## Assumptions
2014-08-25 14:16:29 +02:00
Before you can run this, a few things are assumed:
2014-08-25 10:37:52 +02:00
2017-11-04 23:54:53 +01:00
- You have a clean, minimal Debian 9 or Ubuntu 16.04 host up and running
2014-08-25 14:16:29 +02:00
- You have a user account with password-less SSH access to the machine
- You have sudo privileges on the remote host
- You have created a `hosts` file with something like:
```ini
[web]
web01
```
2015-08-31 22:01:35 +02:00
## Use
2014-08-25 14:16:29 +02:00
Once you've satisfied the the above assumptions, you can execute:
2017-09-20 12:01:12 +02:00
$ ansible-playbook web.yml
2014-08-25 14:16:29 +02:00
2018-04-08 12:47:08 +02:00
## Todo
- Update packages for Ubuntu 18.04 (mariadb, nginx, tarsnap currently using packages for 17.10 artful)
2015-08-31 22:01:35 +02:00
## License
2018-03-26 15:13:04 +02:00
Copyright (C) 2014 - 2018 Alan Orth
2015-05-08 14:59:32 +02:00
The contents of this repository are free software: you can redistribute
it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see < http: / / www . gnu . org / licenses / > .