@betoscopio
PHP
MySQL
Apache
Linux
PHP
MariaDB
Nginx
Linux
¿Qué versión usas?
PHP 5.2 EOL:
6 Jan 2011, 4 years, 6 months ago
PHP 5.3.29 EOL, 14 Aug 2014, 11 months ago
$ php -S localhost:8000 [-t dir/]
PHP NG
“...they have no love for open source, working with the community, or MySQL in general.”
Monty Widenius
Algo de historia:
https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-compatibility/
“...the simple truth is that there is no reason to use MySQL over MariaDB any more, while there are plenty of reasons to choose MariaDB.”
Monty Widenius
# apt-get install php5-fpm
# service php5-fpm restart
Servidor Reverse Proxy, para los protocolos HTTP, HTTPS, SMTP, POP3 e IMAP, además de ser un balanceador de carga, HTTP cache y Servidor Web.
“The most important is that nginx is a reverse proxy first and HTTP server second, its first concern is not files but rather URLs, this changes the way we have to configure nginx.”
de la documentación de nginx
# apt-get install nginx
# service nginx start
/etc/nginx/nginx.conf
/etc/nginx/sites-available/default
Configuración de PHP independiente del servidor web. (El servidor web sólo se comunica con PHP, no interpreta)
/etc/php5/fpm/php.ini
@betoscopio