php 빌드 패키지 저장소 추가
add-apt-repository ppa:ondrej/php
php 설치
apt install php7.4 php7.4-fpm php7.4-mysql php7.4-gd php7.4-curl php7.4-mbstring php7.4-gmp php7.4-soap php7.4-zip php7.4-xml apt install php8.1 php8.1-fpm php8.1-mysql php8.1-gd php8.1-curl php8.1-mbstring php8.1-gmp php8.1-soap php8.1-zip php8.1-xml #vi /etc/php/8.1/fpm/pool.d/www.conf user = engineer group = engineer security.limit_extensions = .php .php3 .php4 .php5 .php7 .html 502 bad gateway 발생시 ;listen = /run/php/php8.1-fpm.sock listen = 127.0.0.1:9000 #service php8.1-fpm restart
nginx 설치
apt install nginx nginx: [emerg] socket() [::]:80 failed 발생시 => listen [::]:80 default_server; 바인딩 부분 주석처리 Permission denied 발생시 vi /etc/nginx/nginx.conf => user engineer 로 변경
설정
vi /etc/php/7.4/apache2/php.ini short_open_tag = Off max_input_time = 60 #무제한: -1 memory_limit = 128M #upload 관련 post_max_size = 30M upload_max_filesize = 20M max_file_uploads = 10
mysql
vi /etc/mysql/mariadb.conf.d/50-server.cnf bind-address = 0.0.0.0 # service mariadb restart