This playbook helps you set up and manage your Uberspace(s).
It configures a few common things that I find essential for Uberspaces and it is extensible for other stuff.
- Let's Encrypt SSL certificates
- WordPress using the awesome Bedrock boilerplate
- An Uberspace, get one at uberspace.de
- Ansible
- Copy
uberspaces.example
touberspaces
and add your Uberspace host(s) and username(s) - Copy
host_vars/UBERSPACE_NAME.UBERSPACE_HOST.uberspace.de.example
to a new file named without the.example
suffix and replaceUBERSPACE_NAME
with your username, e.g.julia
andUBERSPACE_HOST
with your Uberspace host, e.g.eridanus
. - Add the domains you'd like to run on the respective Uberspace to the file created in step 2.
- Repeat steps 2 and 3 for all your Uberspaces.
- Run the playbook using
ansible-playbook --ask-pass site.yml
. - Enjoy!
If you have an SSH keypair and your public key is installed in ~/.ssh/id_rsa.pub
on your local computer, the key will be stored in ~/.ssh/authorized_keys
on your Uberspace and you won't need the --ask-pass
argument in subsequent runs.
Nothing to do or configure here. This works automagically for all your domains.
- To setup a WordPress instance, simply create an entry under
wordpress_instances
in yourhost_vars
file (seehost_vars/UBERSPACE_NAME.UBERSPACE_HOST.uberspace.de.example
for an example) - Use the default
bedrock_repo
fromhttps://github.com/yeah/bedrock.git
or use your own forked repo of the boilerplate (Your Uberspace's public keys will be conveniently downloaded for you topublic_keys/
so you can use them as deploy keys for your private Git repos.) - Add the domains through which your WordPress should be accessible
- Make sure to add these domains to the top-level
domains
section in thehost_vars
file as well!
Normally, your WordPress instances will be updated from your repo daily via a cron job. However, if you want to deploy your WordPress whenever your repository changes, you can specify a value for the optional webhook_key
in each of your WordPress configs.
With a webhook_key
defined, you will be able to create a post-receive hook on your Git server or use your Uberspace as a webhook URL on repository hosting services such as Planio.
Your webhook URLs will be composed like this:
https://{{ uberspace name }}.{{ uberspace host }}.uberspace.de/cgi-bin/wordpress-update-{{ wordpress instance name }}.cgi?{{ wordpress instance webhook key }}
A simple post-receive hook on your Git server could look like this, it would have to go in hooks/post-receive
:
#!/bin/sh
curl -s 'https://julia.eridanus.uberspace.de/cgi-bin/wordpress-update-example_blog.cgi?secretsauce123'
Or if you use Planio, simply enter your URL via Settings → Repositories → your repo → Edit → Post-Receive webhook URL
As the Uberspace Playbook is still in development, it would make sense for you to run the cleanup tasks after every update from this repo. The cleanup tasks remove any files/configurations on your Uberspace which previous versions of the playbook may have installed but which are no longer needed. You can run the cleanup tasks like so:
ansible-playbook cleanup.yml
MIT.
To contribute something you usually configure on your Uberspace, please fork this repo, create a new role (or add to an existing one if it makes sense) and submit a pull request.
I built this. By myself. On my computer.