Stedding is a minimalistic LEMP Stack setup for Laravel PHP in progress. It facilitates the setting up of Laravel apps on a well prepared server using Ansible Playbooks on a Ubuntu server. It provisions your VPS with all the tools necessary to run your Laravel PHP application with ease.
Again, this is still a work in progress. So use it wisely and backup when possible. Better still to test on a barebone server and send in pull requests :)
You need to have Ansible installed on your local computer. This really differs from box to box See Ansible Documents for instructions.
To run Ansible Playbooks properly on Ubuntu 16.0.4 we need to setup a sudo user and make sure Python and some other packages such as ppa:ondrej/php
are available so Ansible can run. The setting up of a sudo user and adding of the SSH keys has been taken care of. So is the adding of Python and Ondrej's PHP PPA. All you need is root access to the Ubuntu 16.0.4 box. Preferably using an SSH key.
NB Gist with useful setup tips
- Install prerequisites
- Sudo user Creation
- Web user Creation
- LEMP Provisioning
- geerlingguy.nginx
- geerlingguy.php
- geerlingguy.mysql
- geerlingguy.php-mysql
- geerlingguy.memcached
- geerlingguy.git
- geerlingguy.composer
- Ansible Deployer - not in use as of yet
- Ansible Users - not in use as of yet
Do not forget to adjust the vars in
grousp_var/all
and orvars/mainyml
where need be. Not all will have to be adjusted perhaps but some will have to. This is besides the addition of the hosts file as will be mentioned later on. The variables in vars/main.yml
are for setting up PHP, MySQL and Nginx details based on Geerlingguy roles. The variables in grousp_var/all
are for the user only at the moment. Might merge all variables some time soon.
We expect you to have installed Ansible on your own control box already. If not check out Ansible for instructions.
The Ansible config file is in the repository already. It checks for a hosts file the root of the project. It is put on .gitignore as we do not want to share host details. So you need to add it. So create and open hosts file with nano using:
nano hosts
add php details using your non sudo user, laravel here, and the ip address to your server
[server]
xxx.xxx.xx.xxx
To do a test from your local computer - a MacBook Pro for example - you should run the following command:
ansible server -m ping
And when all is well you should get this response:
xxx.xxx.xx.xxx | SUCCESS => {
"changed": false,
"ping": "pong"
}
Then to run the script use the following:
ansible-playbook server.yml
This is run as root in most of our cases --ask-sudo-pass
is not added here.
The current Ansible playbooks contain all the necessary packages to run a Laravel app and some more besides that. Here are all the packages:
- git
- nginx
- composer
- php 7.1
- mariadb
- memcached
Nginx details are stored in vars/main.yml
. One host for the site being used for testing purposes has been added there. Do change it to work with the domain of your choice.
nginx_remove_default_vhost: true
nginx_vhosts:
- listen: "80 default_server"
server_name: "larastud.io"
root: "/var/www/larastud.io"
index: "index.php index.html index.htm"
state: "present"
template: "{{ nginx_vhost_template }}"
extra_parameters: |
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
Current PHP configuration details added to vars/main.yml
are:
php_memory_limit: "512M"
php_max_execution_time: "90"
php_upload_max_filesize: "256M"
php_version: "7.1"
php_packages_state: latest
php_packages:
- php7.1-apcu
- php7.1-common
- php7.1-intl
- php7.1-cli
- php7.1-dev
- php7.1-fpm
- libpcre3-dev
- php7.1-gd
- php7.1-curl
- php7.1-imap
- php7.1-json
- php-mbstring
- php7.1-mcrypt
- php7.1-opcache
- php7.1-pdo
- php7.1-xml
- php7.1-mbstring
- php7.1-zip
- php7.1-mysql
php_date_timezone: "Europe/Amsterdam"
php_webserver_daemon: "nginx"
php_fpm_daemon: php7.1-fpm
To work with PHP 7.1. Ondrej's PHP PPA is added in requirements playbook using:
- name: Add repository for PHP 7.
apt_repository: repo='ppa:ondrej/php'
Current list of PHP packages as listed above is pretty large at the moment and not all are needed to run Laravel. In the future some of these packages may be removed.
The MySQL details added to vars/main.yml
so far are only for adding a dummy database:
mysql_root_password: super-secure-password
mysql_databases:
- name: example_db
encoding: latin1
collation: latin1_general_ci
mysql_users:
- name: example_user
host: "%"
password: similarly-secure-password
priv: "example_db.*:ALL"
More details will most probably be added at a later stage.
Deployment script using Deployer.org has been added as a role to this Ansible package. It is using the latest role version that is available on Github. The actual command to install the Laravel necessary files by Deployer:
dep init -t Laravel
has not been added as of yet.