본문 바로가기

프로젝트4

let's encrypt 인증서 자동갱신 문제의 시작 올해 하계 훈련 도중이었나? 갑자기 서버가 응답을 안했던 적이 있었는데 수료 후에 돌아와서 보니 let's encrypt는 무료로 ssl 인증이 가능한 대신 90일 마다 재갱신이 필요하다고 해서 갱신을 해주었던 적이 있다. 그러다가 오늘 저녁부터인가 이놈이 또 뜨는 것이다. 이참에 자동화를 해주기로 했다. 인증서 갱신 #!/bin/bash sudo systemctl stop apache2.service sudo certbot renew sudo certbot certificates sudo systemctl start apache2.service sudo reboot 먼저 bash 파일을 만들어 주자. vi든 nano든 그냥 내용 작성 후 [원하는 이름.sh]로 저장해 주면 된다. 위 명령어.. 2022. 11. 28.
(nextcloud) HTTP header .. least 15552000.. 관련 에러 이름도 길다 Strict-Transport-Security” HTTP header is not set to at least “15552000” seconds. For enhanced security, it is recommended to enable HSTS 원인은 https 를 적용했을 때, 나타나는 것 같다. 방법은 간단하게도 가이드 문서에 나와 있는데, Hardening and security guidance — Nextcloud latest Administration Manual latest documentation Hardening and security guidance — Nextcloud latest Administration Manual latest documentation Nextclou.. 2022. 6. 20.
(nextcloud) php configuration... output_buffering must be disabled 에러 오늘 해결해 볼 문제는 맨 위에 빨간 줄로 뜬 이 에러 바로 요놈이다. 바로 시작해보도록 하자. sudo nano /etc/php/8.0(맞는 버전 고르기)/apache2/php.ini 위의 명령어를 입력하여 파일을 열어준 후, 'ctrl + w' 를 눌러 검색 기능을 연다. output_buffering 을 검색하여 총 두개의 옵션을 찾아냈다. off로 변경하고 php와 아파치를 재시작 했는데도 안됐다. 실패! 계속 찾아보니 아래쪽에 하나가 더 있다. 얘도 off로 바꿔주고 sudo systemctl restart apache2.service sudo systemctl restart php8.0-fpm.service 서비스를 재실행 해주면? 무려 에러가 사라진 것을 알 수 있다! 2022. 6. 18.
nextcloud (occ db:add-missing-indices) 관련 며칠 전 넥스트 클라우드 버전을 24. ... 으로 올리면서 이런 에러문이 생겼다. 해결은 아래 질문글에 대한 답변으로 찾았다. - Help with occ db:add-missing-indices - ℹ️ Support - Nextcloud community Help with occ db:add-missing-indices hi, after nextcloud update 19.0.1 i have error: Missing index “properties_path_index” in table “oc_properties”. If i sudo ae php occ db:add-missing-indices then i get error: PHP Parse error: syntax error, unexpected.. 2022. 6. 4.