우분투에서 가상호스팅으로 워드프레스 설치하기
우분투에서 가상호스팅으로 워드프레스 설치하기 Directory Structure . `– var/ `– www/ `– example.com/ |– public_html/ | `– index.html `– logs Virtualhost cp -r /var/www/wordpress /var/www/example.com Permission for owner (single user) …
우분투에서 가상호스팅으로 워드프레스 설치하기 Directory Structure . `– var/ `– www/ `– example.com/ |– public_html/ | `– index.html `– logs Virtualhost cp -r /var/www/wordpress /var/www/example.com Permission for owner (single user) …
우분투에서 워드프레스 보안 인증서(SSL) 설치하기 Installing Certbot apt -y install certbot python3-certbot-apache Obtaining an SSL Certificate certbot –apache Auto Renew Show crontab list crontab -l every 1 month crontab -e …
우분투에서 워드프레스 설치하기 When you request a directory without specifying a filename, index.html will be given the priority and hence will be displayed. You can change the priority order in …
우분투에서 php sendmail 설치하기 require more 1GB RAM Installation apt -y install sendmail php-mail Configure vim /etc/hosts 127.0.0.1 localhost example.com sendmailconfig vim /etc/php/7.4/fpm/php.ini sendmail_path = "env -i /usr/sbin/sendmail -t -i" …
우분투에서 php Ioncube loader 설치하기 Ubuntu check operating system bit getconf LONG_BIT 64 Download Ioncube Loader cd /tmp wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar -zxvf ioncube_loaders_lin_x86-64.tar.gz cd ioncube/ Obtain php location for modules …
우분투에서 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 …
우분투에서 AMP STACK 설치하기 apache2, mariadb, php Operating System Initial Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl …
아마존 라이트세일에 보안 인증서(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 정보 입력 창이 나오는 경우 워드프레스 설치 디렉토리의 소유자 변경 chown -R www-data:www-data /home/ubuntu/wordpress www-data 보조 그룹에 ubuntu 사용자를 추가 usermod -a -G www-data ubuntu 실행 …
아마존 라이트세일에서 FTP 전송 권한 오류 푸는 방법 permission denied sudo chown -R bitnami:daemon /bitnami/wordpress/wp-content sudo chmod -R g+w /bitnami/wordpress/wp-content Post Tags: #AWS, #bitnami, #error, #hosting, #issue, #lightsail, #permission, #server, …