그놈의 안드로이드

Apache 2.4.18 + PHP-FPM 7.2 + MySQL 5.7(APM) 본문

리눅스/웹 서버

Apache 2.4.18 + PHP-FPM 7.2 + MySQL 5.7(APM)

Sandai.Developer 2018. 12. 30. 22:57

$apt-get update

$apt-get install apache2 libapache2-mod-fastcgi (아파치 설치)

$apt-get install mysql-server (MySQL 설치)

$apt install python-software-properties

$add-apt-repository ppa:ondrej/php

$apt update

$apt install php7.2 php7.2-fpm

$a2enmod actions fastcgi alias proxy_fcgi

$vim /etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>
    ServerName example.com
    ServerAlias www.example.com
    DocumentRoot /var/www/html
 
    <Directory /var/www/html>
        Options -Indexes +FollowSymLinks +MultiViews
        AllowOverride All
        Require all granted
    </Directory>
 
    <FilesMatch \.php$>
        # 2.4.10+ can proxy to unix socket
        SetHandler "proxy:unix:/var/run/php/php7.2-fpm.sock|fcgi://localhost/"
 
        # Else we can just use a tcp socket:
        #SetHandler "proxy:fcgi://127.0.0.1:9000"
    </FilesMatch>
 
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

'리눅스 > 웹 서버' 카테고리의 다른 글

H2o 설치  (0) 2018.12.30
Lighttpd  (0) 2018.12.30
OpenLiteSpeed  (0) 2018.12.30
Tengin 2.2.3  (0) 2018.12.30
Nginx 1.10.3  (0) 2018.12.30
Comments