Last active
May 25, 2018 08:09
-
-
Save hbokh/944987bb7f34dc38767830b882364e3e to your computer and use it in GitHub Desktop.
SaltStack WordPress - getting_started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# vim: ft=yaml | |
wordpress-packages: | |
pkg.installed: | |
- pkgs: | |
- nginx | |
- nginx-common | |
- nginx-full | |
- mariadb-server | |
- mariadb-client | |
- python-mysqldb | |
- python-pip | |
- php5-fpm | |
- php5-mysql | |
- skip_suggestions: true | |
wordpress_db: | |
pip.installed: | |
- name: mysql | |
mysql_database.present: | |
- name: wordpress | |
mysql_user.present: | |
- name: wordpress | |
- password: p4ssw0rd | |
mysql_grants.present: | |
- database: wordpress.* | |
- grant: ALL PRIVILEGES | |
- user: wordpress | |
- host: 'localhost' | |
get_wordpress: | |
cmd.run: | |
- name: 'wget -q -O - http://wordpress.org/latest.tar.gz | tar zxf - ' | |
- cwd: /var/www | |
- creates: /var/www/wordpress/index.php | |
- runas: root | |
/var/www/wordpress/wp-config.php: | |
file.managed: | |
- source: salt://vm/wp-config.php | |
- user: www-data | |
- group: www-data | |
/var/www/wordpress: | |
file.directory: | |
- user: www-data | |
- group: www-data | |
- dir_mode: 775 | |
- file_mode: 664 | |
- recurse: | |
- user | |
- group | |
- mode | |
/etc/php5/fpm/pool.d/www.conf: | |
file.replace: | |
- pattern: "listen = /var/run/php5-fpm.sock" | |
- repl: "listen = 127.0.0.1:9000" | |
- append_if_not_found: True | |
/etc/nginx/sites-available/vhost.conf: | |
file.managed: | |
- source: salt://vm/vhost.conf | |
- user: root | |
- group: wheel | |
- mode: 644 | |
/etc/nginx/sites-enabled/vhost.conf: | |
file.symlink: | |
- target: /etc/nginx/sites-available/vhost.conf | |
nginx: | |
service.running: | |
- watch: | |
- file: /etc/nginx/sites-enabled/vhost.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment