호스팅

우분투에서 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 »

아마존 라이트세일에 보안 인증서(SSL) 적용하기

아마존 라이트세일에 보안 인증서(SSL) 적용하기 SSL 인증서 발급 sudo /opt/bitnami/bncert-tool https://dobiho.com/wordpress/setup-wordpress/setup-wordpres/install-aws-lightsail-wordpress-instance/setup-amazon-lightsail-ssl/ SSL 자동 갱신 인증서 확인 sudo crontab -u bitnami -l https://paperblock.tistory.com/6 SSL 인증서 삭제 ./certbot-auto delete https://nine8007.tistory.com/entry/아마존-라이트세일에서-Letsencrypt-인증서-삭제하기

아마존 라이트세일 워드프레스에서 ftp 정보 입력 창이 나오는 경우

아마존 라이트세일 워드프레스에서 ftp 정보 입력 창이 나오는 경우 워드프레스 설치 디렉토리의 소유자 변경 chown -R www-data:www-data /home/ubuntu/wordpress www-data 보조 그룹에 ubuntu 사용자를 추가 usermod -a -G www-data ubuntu 실행 …

아마존 라이트세일 워드프레스에서 ftp 정보 입력 창이 나오는 경우 Read More »

Scroll to Top