1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- - name: Clone Selfoss
- git: repo=https://github.com/SSilence/selfoss.git
- dest=/var/www/selfoss
- accept_hostkey=yes
-
- - name: Set selfoss permissions
- action: file owner=www-data group=www-data path=/var/www/selfoss recurse=yes state=directory
-
- - name: Create database user for selfoss
- postgresql_user: login_host=localhost login_user={{ db_admin_username }} login_password="{{ db_admin_password }}" name={{ selfoss_db_username }} password="{{ selfoss_db_password }}" state=present
-
- - name: Create database for selfoss
- postgresql_db: login_host=localhost login_user={{ db_admin_username }} login_password="{{ db_admin_password }}" name={{ selfoss_db_database }} state=present owner={{ selfoss_db_username }}
-
- - name: Install selfoss config.ini
- template: src=var_www_selfoss_config.ini.j2 dest=/var/www/selfoss/config.ini group=www-data owner=www-data
-
- - name: Enable Apache rewrite module
- command: a2enmod rewrite creates=/etc/apache2/mods-enabled/rewrite.load
- notify: restart apache
-
- - name: Enable Apache headers module
- command: a2enmod headers creates=/etc/apache2/mods-enabled/headers.load
- notify: restart apache
-
- - name: Enable Apache expires module
- command: a2enmod expires creates=/etc/apache2/mods-enabled/expires.load
- notify: restart apache
-
- - name: Rename existing Apache blog virtualhost
- command: mv /etc/apache2/sites-available/selfoss /etc/apache2/sites-available/selfoss.conf removes=/etc/apache2/sites-available/selfoss
-
- - name: Remove old sites-enabled/selfoss symlink (new one will be created by a2ensite)
- command: rm /etc/apache2/sites-enabled/selfoss removes=/etc/apache2/sites-enabled/selfoss
-
- - name: Configure the Apache HTTP server for selfoss
- template: src=etc_apache2_sites-available_selfoss.j2 dest=/etc/apache2/sites-available/selfoss.conf group=root owner=root
-
- - name: Enable the selfoss site
- command: a2ensite selfoss.conf creates=/etc/apache2/sites-enabled/selfoss.conf
- notify: restart apache
-
- - name: Install selfoss cronjob
- cron: name="selfoss" user="www-data" minute="*/5" job="curl --silent --show-error -k 'https://{{ selfoss_domain }}/update' > /dev/null"
-
- - name: Configure selfoss logrotate
- copy: src=etc_logrotate_selfoss dest=/etc/logrotate.d/selfoss owner=root group=root mode=0644
|