서버

nginx에서 php 확장자 제거하기

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 …

nginx에서 php 확장자 제거하기 Read More »

우분투에서 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-인증서-삭제하기

Scroll to Top