Python/Deploy 5

actions/create-release@v1 사용 시, Resource not accessible by integration 해결방법

Github action 사용하면서 Release 자동 생성 step을 넣어줬었는데 Resource not accessible by integration 에러가 났었다. 아래와 같이 create-release 공식 예제 소스를 넣었는데도 에러가 났다. - name: Create Release id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} body: | Changes in this Release - First Change - Second Change..

Python/Deploy 2023.07.10

Ubuntu 22.04 Nginx HTTPS 적용

$ sudo apt-get update $ sudo apt-get install software-properties-common $ sudo add-apt-repository universe $ sudo apt-get update $ sudo apt-get install certbot python3-certbot-nginx $ sudo certbot --nginx -d 사이트 주소 입력 # sudo certbot --nginx -d example.com # sudo certbot --nginx -d blog.example.com Certbox Process 첫 번째 내용 : 각종 보안 이슈 사항 등 정보 제공 - 관리자 이메일 주소 입력 두 번째 내용 : 이용 동의 관련 동의 선택 - 동의 세 번째 내용..

Python/Deploy 2023.07.10