Skip to content
This repository has been archived by the owner on Sep 25, 2018. It is now read-only.

Commit

Permalink
Using Xenail box since Trusty is broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesportwoodii committed Jul 31, 2017
1 parent 8edafed commit 8456922
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Vagrantfile
Expand Up @@ -4,7 +4,8 @@
Vagrant.configure(2) do |config| Vagrant.configure(2) do |config|


# Use a preconfigured Vagrant box # Use a preconfigured Vagrant box
config.vm.box = "charlesportwoodii/php7_trusty64" config.vm.box = "charlesportwoodii/php7_xenial64"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.box_check_update = true config.vm.box_check_update = true


config.vm.synced_folder ".", "/var/www", config.vm.synced_folder ".", "/var/www",
Expand Down
2 changes: 1 addition & 1 deletion protected/config/vagrant-nginx.conf
Expand Up @@ -32,7 +32,7 @@ server {


location ~ [^/]\.php(/|$) { location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$; fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass backend; fastcgi_pass php70;
fastcgi_index index.php; fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root; fastcgi_param DOCUMENT_ROOT $realpath_root;
Expand Down

0 comments on commit 8456922

Please sign in to comment.