--- - name: Install dependencies apt: name: - php-fpm - name: Create vhost directory file: path=/var/www/eh21 state=directory owner=www-data group=www-data - name: Create vhost directory file: path=/var/www/engel state=directory owner=www-data group=www-data - name: Ensure certificates are available command: openssl req -x509 -nodes -newkey rsa:2048 -keyout /etc/nginx/ssl/eh21.easterhegg.eu.key -out /etc/nginx/ssl/eh21.easterhegg.eu.crt -days 730 -subj "/CN=eh21.easterhegg.eu" creates=/etc/nginx/ssl/eh21.easterhegg.eu.crt notify: Restart nginx - name: Configure certificate manager copy: src=certs dest=/etc/acertmgr/eh21.easterhegg.eu.conf notify: Run acertmgr - name: Configure vhosts copy: src=vhost dest=/etc/nginx/sites-available/www notify: Restart nginx - name: Enable vhosts file: src=/etc/nginx/sites-available/www dest=/etc/nginx/sites-enabled/www state=link notify: Restart nginx - name: Start php8.2-fpm service: name=php8.2-fpm state=started enabled=yes