From 71f654b56d51b4ba142675fabd4dda11e6eb6426 Mon Sep 17 00:00:00 2001 From: mckayshirou Date: Sun, 18 Sep 2022 17:21:55 -0400 Subject: [PATCH] tutorials - complete LAMP setup with ODBC, and PHP main configurations * apache2 crap stupid server setup * php but using php 7 cos alpine 3.10 to 3.15 ues php7, for php8 just change the number * mysql setup for local development * postgresql setup for local development * odbc setup for ini files and modules available --- tutorials/README.md | 1 + ...r-alpine-LAMP-professional-fast-forward.md | 474 ++++++++++++++++++ 2 files changed, 475 insertions(+) create mode 100644 tutorials/server-alpine-LAMP-professional-fast-forward.md diff --git a/tutorials/README.md b/tutorials/README.md index 7c7f166..a82ecbc 100644 --- a/tutorials/README.md +++ b/tutorials/README.md @@ -42,6 +42,7 @@ TODO ## SERVERS * [servers-howto-setup-PXE-service-for-others-linuxes-ES.md](servers-howto-setup-PXE-service-for-others-linuxes-ES.md) +* [server-alpine-LAMP-professional-fast-forward.md](server-alpine-LAMP-professional-fast-forward.md) (this one includes apache2+ssl+php+odbc+postgres+mysql) * [alpine-howto-gitea-package.md](alpine-howto-gitea-package.md) ## Convention for naming the files: diff --git a/tutorials/server-alpine-LAMP-professional-fast-forward.md b/tutorials/server-alpine-LAMP-professional-fast-forward.md new file mode 100644 index 0000000..19e8691 --- /dev/null +++ b/tutorials/server-alpine-LAMP-professional-fast-forward.md @@ -0,0 +1,474 @@ +# Linux + Apache2 + Mysql + Php + +The recommendation its to use apache2 behind a reverse proxy setup, such like +lighttpd or hiawatta servers. This version will only use Apache2 but we already has a better +implementation using lighttpd, much more complete. + +## 1 - apache2 + +Due to the minimalism of alpine linux, unfortunately the apache2 packaging is the worst ever seen, its configuration file makes it impossible to configure with only single line commands so the commands for quick configuration with cares of overwriting are very dedicated. +Currently the most lazy and slow server .. just for windosers that wants to learn.. + +#### Apache2 Installation + +1. run apk for need pacakges +2. make the htdos public web root directories +3. configure the default ports and server information +4. setup the permissions +5. added the service to the boot process +6. start the service +7. put a default page to test the service + +``` +apk add apache2 apache2-utils + +mkdir -p /var/www/localhost/htdocs /var/log/apache2 + +sed -i -r 's#^Listen.*#Listen 80#g' /etc/apache2/httpd.conf + +sed -i -r 's#^ServerTokens.*#ServerTokens Minimal#g' /etc/apache2/httpd.conf + +chown -R apache:www-data /var/www/localhost/ + +chown -R apache:wheel /var/log/apache2 + +rc-update add apache2 default + +rc-service apache2 restart + +echo "it works" > /var/www/localhost/htdocs/index.html +``` + +For testing open a browser and go to `http://` and you will see "it works". The "webserveripaddres" are the ip address of your setup/server machine. + +#### Apache2 Status special page + +1. Enable the mod_status at the config files +2. change path in the config file, we are using security by obfuscation later by auth module +3. change the restriction of the status pages, currently we just remove it +4. restart the service to see changes at the browser + +``` +mkdir -p /var/www/localhost/htdocs/stats + +sed -i -r 's#.*LoadModule.*modules/mod_info.so.*#LoadModule info_module modules/mod_info.so#g' /etc/apache2/httpd.conf +sed -i -r 's#.*LoadModule.*modules/mod_status.so.*#LoadModule status_module modules/mod_status.so#g' /etc/apache2/httpd.conf + +sed -i -r 's#tion /server-status#tion /stats/server-status#g' /etc/apache2/conf.d/info.conf +sed -i -r 's#tion /server-info#tion /stats/server-info#g' /etc/apache2/conf.d/info.conf + +sed -i -r 's#.*Require host.*#\# Require host#g' /etc/apache2/conf.d/info.conf +sed -i -r 's#.*Require ip.*#\# Require ip#g' /etc/apache2/conf.d/info.conf + +rc-service apache2 restart +``` + +#### Apache2 CGI bin directory support + +1. create the directory due packager dont make any reference to that neither in the useradd +2. enable the mod_userdir in the config file +3. get sure alias module is also enabled +4. setup and enable the config cgi file path +5. restart the service to see changes at the browser + +``` +mkdir -p /var/www/localhost/cgi-bin + +sed -i -r 's#.*LoadModule.*modules/mod_cgid.so.*#LoadModule cgid_module modules/mod_cgid.so#g' /etc/apache2/httpd.conf +sed -i -r 's#.*LoadModule.*modules/mod_cgi.so.*#LoadModule cgi_module modules/mod_cgi.so#g' /etc/apache2/httpd.conf + +sed -i -r 's#.*LoadModule.*modules/mod_alias.so.*#LoadModule alias_module modules/mod_alias.so#g' /etc/apache2/httpd.conf + +sed -i -r 's#.*ScriptAlias /cgi-bin/.*# ScriptAlias /cgi-bin/ "/var/www/localhost/cgi-bin"#g' /etc/apache2/httpd.conf + +rc-service apache2 restart +``` + +After that, all the files under the `/var/www/localhost/cgi-bin` directory will be procesed under `http://localhost/cgi-bin/` path to executed due the directives defined in the line 482 of the config file. + +#### Apache2 Descriptive error or special pages + +1. install the errors package +2. restart the service + +``` +apk add apache2-error + +rc-service apache2 restart +``` + +All about error documents are define at `/etc/apache2/conf.d/multilang-errordoc.conf`, you can customized byt redefine the error alias and the error codes. The right way is to make a symlink from `/var/www/error-pages` over each document and if there's any customized remove the symlink and create the alternate error page there. + +#### Apache2 Userdir public_html support + +1. create the directory for put the html files due alpine crap does not follow any standard +2. enable the module in the webserver +3. set the user directory in the config file +4. restart the service to see the changes at the browser per user + +``` +mkdir -p /etc/skel/public_html + +for i in /home/*; do mkdir $i/public_html ; done + +sed -i -r 's#.*LoadModule.*modules/mod_usertrack.so.*#LoadModule usertrack_module modules/mod_usertrack.so#g' /etc/apache2/httpd.conf +sed -i -r 's#.*LoadModule.*modules/mod_userdir.so.*#LoadModule userdir_module modules/mod_userdir.so#g' /etc/apache2/httpd.conf + +sed -i -r 's#^UserDir .*#UserDir public_html#g' /etc/apache2/conf.d/userdir.conf + +rc-service lighttpd restart +``` + +**WARNING** as we said.. alpine policy is to be most upstream equal possible, almost like packagers are lazy? NO! just dont put any thing about root user access, but well, you must know what are you doing, by the addition of `UserDir disabled root postmaster` you will denied specific users due security. + +#### Apache2 alpine proxy modules setup + +The error of the XML file in the proxy modules are due the incomplete right made package: + +``` +httpd: Syntax error on line 481 of /etc/apache2/httpd.conf: Syntax error on line 13 of /etc/apache2/conf.d/proxy-html.conf: Cannot load /usr/lib/libxml2.so into server: Error loading shared library /usr/lib/libxml2.so: No such file or directory +``` + +1. install the proxy apache2 packages +2. fix the configuration of the modules +3. setup a conf file for your redirection +4. restart the service + +``` +apk add apache2-proxy-html apache2-proxy + +sed -i -r 's#/usr/lib/libxml2.so#/usr/lib/libxml2.so.2#g' /etc/apache2/conf.d/proxy-html.conf + +cat >> /etc/apache2/conf.d/myproxy.conf << EOF + ProxyPreserveHost On + ProxyRequests off + AllowEncodedSlashes NoDecode + ProxyPass / http://127.0.0.1:3002/ nocanon +EOF + +service apache2 restart +``` + +**WARNING** of course, the `myproxy.conf` is hypothetical, for didactic purposes, here it is only exemplified that the error is corrected in the step of the sed command to work. + +#### Apache2 SSL support + +1. install openssl and apache-ssl +2. create the self signed certificate +3. set proper permissions +4. setup the cert file for combined pem +5. setup the port for the openssl protocol module +6. setup the allowed negociations, by example allow TLS 1.0 (default deny sslv3 and tls1) +7. setup the allowed protocols, by example allow also olders ones like TLS 1.0 +8. activate the mod_redirect in case of global http to https redirections +9. restart the service to see changes + +``` +apk add openssl apache2-ssl + +mkdir -p /etc/ssl/certs/ + +openssl req -x509 -days 1460 -nodes -newkey rsa:4096 \ + -subj "/C=VE/ST=Bolivar/L=Upata/O=VenenuX/OU=Systemas:hozYmartillo/CN=$(hostname -d)" \ + -keyout /etc/ssl/certs/localhost.pem -out /etc/ssl/certs/localhost.pem + +chmod 640 /etc/ssl/certs/localhost.pem +chown apache:www-data /etc/ssl/certs/localhost.pem + +sed -i -r 's#^SSLCertificateKeyFile.*/etc/#\#SSLCertificateKeyFile /etc/#g' /etc/apache2/conf.d/ssl.conf +sed -i -r 's#^SSLCertificateFile.*/etc/#SSLCertificateFile /etc/ssl/certs/localhost.pem#g' /etc/apache2/conf.d/ssl.conf +sed -i -r 's#^SSLCertificateChainFile.*#SSLCertificateChainFile /etc/ssl/certs/localhost.pem#g' /etc/apache2/conf.d/ssl.conf +sed -i -r 's#\#.*SSLCertificateChainFile.*#SSLCertificateChainFile /etc/ssl/certs/localhost.pem#g' /etc/apache2/conf.d/ssl.conf + +sed -i -r 's#^Listen.*#Listen 443#g' /etc/apache2/conf.d/ssl.conf +sed -i -r 's#^#g' /etc/apache2/conf.d/ssl.conf + +sed -i -r 's#^SSLProtocol.*#SSLProtocol all#g' /etc/apache2/conf.d/ssl.conf + +sed -i -r 's#^SSLCipherSuite.*#SSLCipherSuite HIGH:MEDIUM:ALL:!MD5:!RC4:!3DES#g' /etc/apache2/conf.d/ssl.conf +sed -i -r 's#^SSLProxyCipherSuite.*#SSLProxyCipherSuite HIGH:MEDIUM:ALL:!MD5:!RC4:!3DES#g' /etc/apache2/conf.d/ssl.conf + +rc-service apache2 restart +``` + +**WARNING NOTES** + +1. This is a permissive configuration full compatible wtith older and newer browsers. +2. to only allow most secure protocols and a bit of compatibilty, set to `SSLProtocol all -TLSv1 -SSLv3` +3. to only allow most secure negociations and a bit of compat, set to `SSLCipherSuite HIGH:MEDIUM:ECDHE:!MD5:!RC4:!3DES:!ADH` +4. to only allow most secure negociations and a bit of compat, set proxy to `SSLProxyCipherSuite HIGH:MEDIUM:ECDHE:!MD5:!RC4:!3DES:!ADH` + +## 2 - PHP + +The php package in alpine are only one version at time. +This is the way you should do since alpine 3.8 until alpine 3.15, for alpine 3.16 and go check next section + +#### apache2 and php7 + +1. Install php base packages for php runtime features +2. Install php internationalization and languaje support +3. Install php graphics support packages +4. install php autentication and extra protocol support +5. Install the cli package and then the specific engine: + * install the fpm package for the fpm backend + * install the cgi package for the cgi backend +6. install the database handlers + * install berkerly, mysql, ODBC, postgres, sqlite + * install the DBO abstration and their backends, mysql, ODBC, postgres, sqlite +7. install the php apache2 module package + +``` +apk add php7-opcache php7-openssl php7-json php7-bcmath php7-mbstring php7-bz2 php7-calendar \ + php7-ctype php7-dev php7-dom php7-enchant php7-fileinfophp7-shmop php7-simplexml php7-tidy \ + php7-tokenizer php7-sysvmsg php7-sysvsem php7-sysvshm php7-xml php7-xmlreader php7-xmlrpc \ + php7-xmlwriter php7-xsl php7-zip + +apk add php7-iconv php7-intl php7-gettext php7-pspell php7-recode + +apk add php7-exif php7-gd php7-pcntl php7-gmp php7-litespeed + +apk add php7-ftp php7-ldap php7-imap php7-session php7-snmp php7-sockets + +apk add php7 php7-sockets php7-curl php7-pear php7-phar php7-doc php7-embed php7-posix + +apk add php-fpm + +apk add php fgi + +apk add php7-dba php7-mysqli php7-mysqlnd php7-odbc php7-pgsql php7-sodium php7-sqlite3 + +apk add php7-pdo php7-pdo_dblib php7-pdo_mysql php7-pdo_odbc php7-pdo_pgsql php7-pdo_sqlite + +apk add php7-apache2 +``` + +**WARNING** all of these are due alpine 3.10 to 3.15 uses php7, alpine 3.16 start to use php8, +so in such case just change the "7" by "8" exam ple change "php7-apache2" by "php8-apache2". + +#### configuration of php package + +1. Use fix.pathinfo +2. Set safe mode off +3. Dont expose php code if something fails +4. Set amount of memory limit for execution to 536Mb (most servers are minimum of 1 GB of RAM) +5. Set upload size to 128Mb as maximun. +6. Set POST max size to 256Mb based on the upload max size limit. +7. Turn on the URL open method +8. Set default charset to UTF-8 for increased compatibility +9. Increase the execution time and the input time for. + +``` +sed -i -r 's|.*cgi.fix_pathinfo=.*|cgi.fix_pathinfo=1|g' /etc/php*/php.ini +sed -i -r 's#.*safe_mode =.*#safe_mode = Off#g' /etc/php*/php.ini +sed -i -r 's#.*expose_php =.*#expose_php = Off#g' /etc/php*/php.ini +sed -i -r 's#memory_limit =.*#memory_limit = 536M#g' /etc/php*/php.ini +sed -i -r 's#upload_max_filesize =.*#upload_max_filesize = 128M#g' /etc/php*/php.ini +sed -i -r 's#post_max_size =.*#post_max_size = 256M#g' /etc/php*/php.ini +sed -i -r 's#^file_uploads =.*#file_uploads = On#g' /etc/php*/php.ini +sed -i -r 's#^max_file_uploads =.*#max_file_uploads = 12#g' /etc/php*/php.ini +sed -i -r 's#^allow_url_fopen = .*#allow_url_fopen = On#g' /etc/php*/php.ini +sed -i -r 's#^.default_charset =.*#default_charset = "UTF-8"#g' /etc/php*/php.ini +sed -i -r 's#^.max_execution_time =.*#max_execution_time = 150#g' /etc/php*/php.ini +sed -i -r 's#^max_input_time =.*#max_input_time = 90#g' /etc/php*/php.ini +``` + +#### configuration of apache2 and php-fpm + +1. Create directory for php socket and pid files, set owner, **WARNING** MUST BE EQUAL to openrc defined! +2. Set into configuration file paths for socket and pid, **WARNING** MUST BE EQUAL to openrc defined! +3. Set into configuration file owner for apache2 and mode, **WARNING** MUST BE EQUAL to openrc defined! +4. eable the line of event module uncommenting and disable the line of prefork module by commenting +5. add the php fpm service and activate the apache2 service **WARNING** since alpine v3.16 its php8 not php7 +6. start the php fpm service +7. now here you will choose the way to handle php: + * add the handler into apache2 configuration for php using module and restart apache2 + * add the handler into apache2 configuration for php using fpm and restart apache2 + +``` +mkdir -p /var/run/php-fpm7/ +chown apache:apache /var/run/php-fpm7 + +sed -i -r 's|^.*listen =.*|listen = /run/php-fpm7/php7-fpm.sock|g' /etc/php*/php-fpm.d/www.conf +sed -i -r 's|^pid =.*|pid = /run/php-fpm7/php7-fpm.pid|g' /etc/php*/php-fpm.conf + +sed -i -r 's|^.*listen.owner = .*|listen.owner = apache|g' /etc/php*/php-fpm.d/www.conf +sed -i -r 's|^.*listen.group = .*|listen.group = apache|g' /etc/php*/php-fpm.d/www.conf +sed -i -r 's|^.*listen.mode = .*|listen.mode = 0660|g' /etc/php*/php-fpm.d/www.conf + +sed -i -r 's|.*LoadModule.*modules/mod_mpm_event.so.*|LoadModule mpm_event_module modules/mod_mpm_event.so|g' /etc/apache2/httpd.conf +sed -i -r 's|.*LoadModule.*modules/mod_mpm_prefork.so.*|#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so|g' /etc/apache2/httpd.conf + +rc-update add php-fpm7 +rc-update add apache2 + +rc-service php-fpm7 start + +cat >> /etc/apache2/conf.d/php7-module.conf << EOF +LoadModule php_module modules/mod_php7.so +DirectoryIndex index.php index.html + + SetHandler application/x-httpd-php + +EOF +rc-service apache2 start + +cat >> /etc/apache2/conf.d/php-fpm.conf << EOF + + ProxyPassMatch "^/(.*\.php(/.*)?)$" "unix:/run/php-fpm7/php7-fpm.sock|fcgi://localhost/var/www/" + +EOF +rc-service apache2 start +``` + +**WARNING** the two last steps are mutualy exclusive, only one way of php handle can be made. + +**IMPORTANT** here we use **sockets, so its more faster rather fcgi** steps made by oficial wiki. + +## 3 - Databases - MySQL postgreSQL SQLite ODBC + +In alpine the only option is using Mariadb. + +#### Mysql Instalation and configuration + +1. install the packages necesary to LAMP usage, not only to deploy a database, including the mytop monitor +2. Initialize the main mysql database, and the data dir as standardized to /var/lib/mysql by the rc script +3. Then initialize the service, root account and socket connection are enabled without password at this point +4. Set up the root account by asigning a proper password. This is pure paranoia. the next step does just that! +5. On older Alpine system you must set config files for MAX ALLOWED PACKETS to minimun proper amount: +6. Allow any source connections in cases where we must test so much and connect to develop +7. Add the start service process, but don't set it as a boot process because networking needs to already be running. +8. Restart the service to apply changes. + +``` +apk add mysql mysql-client mariadb-doc mariadb-server-utils mariadb-mytop + +mysql_install_db --user=mysql --datadir=/var/lib/mysql + +rc-service mariadb start + +mysqladmin -u root password toor + +sed -i "s|.*max_allowed_packet\s*=.*|max_allowed_packet = 100M|g" /etc/mysql/my.cnf +sed -i "s|.*max_allowed_packet\s*=.*|max_allowed_packet = 100M|g" /etc/my.cnf.d/mariadb-server.cnf + +sed -i "s|.*bind-address\s*=.*|bind-address=0.0.0.0|g" /etc/mysql/my.cnf +sed -i "s|.*bind-address\s*=.*|bind-address=0.0.0.0|g" /etc/my.cnf.d/mariadb-server.cnf + +rc-service mariadb restart + +rc-update add mariadb +``` + +#### PostgreSQL instalation and configuration + +1. install postgres packages **WARNING** since alpine v3.15 the pacakge has name scheme version number +2. Initialize the main cluster database, and the data dir as standartized +3. Allow any source connections in cases where we must test so much and connect to develop +4. Then initialize the service, root account and socket connection are enabled without password at this point +5. Add the start service process, but don't set it as a boot process because networking needs to already be running. +6. Set up the root account by asigning a proper password. This is pure paranoia. the next step does just that! + + +``` +apk add postgresql postgresql-client postgresql-contrib postgresql-libs postgresql-orafce + +rc-service postgresql setup + +sed -r -i "s|.*listen_addresses.*=.*|listen_addresses=\*|g" /var/lib/postgresql/*/data/postgresql.conf* + +rc-service postgresql start + +rc-update add postgresql + +psql -U postgres + create user postfix with password '******'; + create database postfix owner postfix; + \c postfix + create language plpgsql; + \q +``` + +#### ODBC instalation and configuration + +1. install the base packages for odbc and the available alpine odbc backends to access +2. configure the postgresql ODBC module in the system, for ansi and unicode flavours +2. configure the freetds ODBC module in the system for MSSQL and Sybase databases +2. configure the MDBtools ODBC module in the system for MDB M$ databases + +``` +apk add unixodbc psqlodbc freetds mdbtools-odbc + +cat > /tmp/tmppg.tmp << EOF +[PostgreSQL] +Description = PostgreSQL ODBC (ANSI version) +Driver = /usr/lib/psqlodbca.so +Debug = 0 +CommLog = 1 +[PostgreSQL-Unicode] +Description = PostgreSQL ODBC (Unicode version) +Driver = /usr/lib/psqlodbcw.so +Debug = 0 +CommLog = 1 +EOF +odbcinst -u -d -f /tmp/tmppg.tmp + +cat > /tmp/tmptds.tmp << EOF +[FreeTDS] +Description = TDS module (Sybase/MS SQL) +Driver = /usr/lib/libtdsodbc.so.0 +CPTimeout = +CPReuse = +odbcinst -u -d -f /tmp/tmptds.tmp + +cat > /tmp/tmpmdb.tmp << EOF +[MDBTools] +Description = MDB modules for ODBC +Driver = /usr/lib/odbc/libmdbodbc.so +CPTimeout = +CPReuse = +odbcinst -u -d -f /tmp/tmpmdb.tmp +``` + +**WARNING** the packages for mysql and sqlite are `sqliteodbc` and `mariadb-connector-odbc` but only available for edge. + +## Extra needs + +#### Lest Encrypt to provide real certifications + +To obtain a real certificate, you must have a external direct public ip, so for local LAMP common deploys are nonsense. + +Check the document [guide-only-dehydrated.md](guide-only-dehydrated.md) there's also a specific section to setup apache2. + +#### adminer to manage database + +The most secure for web Mysql managemend its adminer, cos phpmyadmin its too polite + +Adminer permits to manage any kind of database, including odbc. + +## see also + +- 🗯 IRC + - 💬 `##alpine_telegram_english` + - 💬 `#alpine_linux_english` +- 📱 Telegram https://t.me/alpine_linux + - 🇬🇧 https://t.me/alpine_linux_english + - 🇷🇺 https://t.me/alpine_linux_pycckuu (dual english russian, low activity) + - 🇨🇴 https://t.me/alpine_linux_espanol + - 🇧🇬 https://t.me/alpine_linux_bulgarian (dual english bulgarian, low activity) + - 🇨🇳 https://t.me/alpine_linux_chinese (dual english chinese, low activity) + - 📡 https://t.me/opentechnologies (open languajes but english as main) +- Matrix + - 👥 https://matrix.to/#/#alpine-linux-english:matrix.org + +# LICENSE + +**CC BY-NC-SA**: the project allows reusers to distribute, remix, adapt, and build upon the material +in any medium or format for noncommercial purposes only, and only so long as attribution is given +to the creators involved. If you remix, adapt, or build upon the material, you must license the modified +material under identical terms, includes the following elements: + +* **BY** – Credit must be given to the creator of each content respectivelly, starting at the first contributor. +* **NC** – Only noncommercial uses of the work are permitted, with exceptions if you fill an issue here! +* **SA** – Adaptations must be shared under the same terms, you must obey this terms and do not change it. + +For more information check the [alpine/copyright.md](../../alpine/copyright.md)