서버에서 로컬 언어팩 설치하기
서버에서 로컬 언어팩 설치하기 우분투에서 설치하기 apt install language-pack-ko RHEL/CentOS에서 설치하기 yum install langpacks-ko 사용 가능한 언어 목록 조회하기 $ locale -a | grep … ko_KR.euckr ko_KR.utf8 … POSIX Post …
서버에서 로컬 언어팩 설치하기 우분투에서 설치하기 apt install language-pack-ko RHEL/CentOS에서 설치하기 yum install langpacks-ko 사용 가능한 언어 목록 조회하기 $ locale -a | grep … ko_KR.euckr ko_KR.utf8 … POSIX Post …
nginx에서 php 확장자 제거하기 Edit /etc/nginx/sites-available/default.conf server { … location / { try_files $uri $uri/ $uri.html $uri.php$is_args$args; } location ~ \.php$ { try_files $uri =404; } … } Reference https://stackoverflow.com/questions/21911297/how-to-remove-both-php-and-html-extensions-from-url-using-nginx …
우분투에서 가상호스팅으로 워드프레스 설치하기 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-인증서-삭제하기