diff --git a/Debian-8-Install.md b/Debian-8-Install.md index 1185556..5dfc2e1 100644 --- a/Debian-8-Install.md +++ b/Debian-8-Install.md @@ -36,10 +36,10 @@ Now lets install php and nginx our webserver. I have choosen PHP version 7.1 `apt-get install nginx php7.1 php7.1-fpm php7.1-cli php7.1-mcrypt php7.1-gd php7.1-curl php7.1-common php7.1-gmp php7.1-json php7.1-zip php7.1-xml php7.1-readline php7.1-opcache php7.1-mysql php7.1-mbstring` -Install composer which manages the install of Invoice Ninja (replace x in http, had to write it that way) +Install composer which manages the install of Invoice Ninja : -curl -sS hxtps://getcomposer.org/installer | php +curl -sS https://getcomposer.org/installer | php `sudo mv composer.phar /usr/local/bin/composer` @@ -50,7 +50,7 @@ Choose a location for your invoice ninja install. I choose to install it in my u cd to your install location -git clone hxtps://github.com/hillelcoren/invoice-ninja.git ninja +git clone https://github.com/hillelcoren/invoice-ninja.git ninja `composer install --no-dev -o` @@ -192,13 +192,13 @@ Now Invoice Ninja and the WebServer are configured to only allow https. In the f Set correct permissions: -`chown -R -R /yourinstallpath` +`chown -R www-data:www-data /yourinstallpath` `cd /path/to/ninja/install` `chmod -R 755 storage` -`sudo chown -R storage bootstrap public/logo` +`sudo chown -R www-data:www-data storage bootstrap public/logo` Ok lets see if this all works