Update pivilion manual setup

v3d 2018-03-06 22:45:05 +00:00
parent 3745d337bf
commit 42d2a1cb08

@ -7,7 +7,7 @@ For testing Pivilion without a Raspberry Pi, you can use Ubuntu server (or any o
`apt-cache search package name` `apt-cache search package name`
to search for similar packages. In Ubuntu server php5-cgi is called php-cgi. to search for similar packages.
Run your appliance in bridged networking mode if you need to access your Pivillion appliance from your local network. Run your appliance in bridged networking mode if you need to access your Pivillion appliance from your local network.
@ -85,11 +85,11 @@ You will see lighttpd's placeholder page.
### Install PHP and modules ### Install PHP and modules
`sudo apt-get install php5-cgi` `sudo apt-get install php-cgi`
PHP (Hypertext Preprocessor) is a server-side scripting language designed primarily for (but not limited to) web development. We use it to run our basic gallery generation script. PHP (Hypertext Preprocessor) is a server-side scripting language designed primarily for (but not limited to) web development. We use it to run our basic gallery generation script.
php5-cgi is a PHP to CGI interpreter. CGI (Common Gateway Interface ) offers a standard protocol for web servers to interface with executable programs running on a server that generate web pages dynamically. The interpreter is how Lighty handles PHP. php-cgi is a PHP to CGI interpreter. CGI (Common Gateway Interface ) offers a standard protocol for web servers to interface with executable programs running on a server that generate web pages dynamically. The interpreter is how Lighty handles PHP.
Apt will install all required dependencies. Apt will install all required dependencies.