Updated Installing Invoice Ninja 2.0 (markdown)

David Bomba 2020-04-02 22:45:41 +11:00
parent ddf5dc87dd
commit 6b86ae9dcc
2 changed files with 40 additions and 9 deletions

@ -1,9 +0,0 @@
# Installation.
* Download the release [here](https://github.com/invoiceninja/invoiceninja/releases/download/v5.0-release/invoiceninja.zip)
* Unzip the folder and configure a virtual host with your webserver of choice.
* Point your browser to http://your.domain.com/setup
* Configure your MySQL database, Mail server and other fields and click on Setup.
* Done!!!
> Invoice Ninja 2.0 requires at least PHP 7.3, MySQL / MariaDB

@ -0,0 +1,40 @@
# Installation. (release tag v5.0)
* Download the release [here](https://github.com/invoiceninja/invoiceninja/releases/download/v5.0-release/invoiceninja.zip)
* Unzip the folder and configure a virtual host with your webserver of choice.
* Point your browser to http://your.domain.com/setup
* Configure your MySQL database, Mail server and other fields and click on Setup.
* Done!!!
> Invoice Ninja 2.0 requires at least PHP 7.3, MySQL / MariaDB
### Example nginx config
server {
listen 80;
server_name invoiceninja.test;
root /var/www/invoiceninja/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
if (!-e $request_filename) {
rewrite ^(.+)$ /index.php?q= last;
}
location ~* /logo/.*\.php$ {
return 503;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}