ubuntu

우분투에서 PHP-FPM 설치하기

우분투에서 PHP-FPM 설치하기 apt -y install php7.4-fpm Apache Configuration vim /etc/apache2/sites-available/000-default.conf <VirtualHost *:80> … <FilesMatch \.php$> SetHandler "proxy:unix:/var/run/php/php7.4-fpm.sock|fcgi://localhost/" </FilesMatch> … </VirtualHost> Enable required modules, proxy_fcgi and setenvif: a2enmod proxy_fcgi setenvif …

우분투에서 PHP-FPM 설치하기 Read More »

우분투에서 도커 설치

우분투에서 도커 설치 Add Repository $ apt update $ apt install apt-transport-https ca-certificates curl software-properties-common $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add – $ add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic …

우분투에서 도커 설치 Read More »

Scroll to Top