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
2023-08-09 21:51:53 +02:00
- You have a clean, minimal Ubuntu 20.04 or Debian 11/12 host up and running
2020-07-14 08:45:33 +02:00
- Python 3 is installed on the remote server (requirement of Ansible)
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
2018-04-29 20:16:03 +02:00
- Switch from `cron-apt` to [`unattended-upgrades` ](https://wiki.debian.org/UnattendedUpgrades )
2018-04-08 12:47:08 +02:00
2015-08-31 22:01:35 +02:00
## License
2021-03-19 23:16:16 +01:00
Copyright (C) 2014– 2021 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 / > .