본문 바로가기

Backend/Server

(13)
[AWS] AWS Cli 로 S3 다루기 관련 블로그 https://velog.io/@leobit/AWS-CLI-with-S3 AWS CLI with S3 AWS 웹 서비스에 접속하지 않고 내부 콘솔만으로 S3를 관리할 수 있게 해주는 툴이다. 아래 내용은 AWS 공식문서에서 나온 내용을 참고하여 직접 세팅해본 경험을 바탕으로 작성되었다.공식문서 : velog.io
[AWS] AWS, Freenom, Cloudflare, Https 적용하는 블로그 ndb796.tistory.com/245 13강 Cloud Flare를 이용한 HTTPS 설치 및 최종 배포 ※ 기존 소스코드의 문제점 확인 ※ 가장 먼저 리액트(React) 소스코드에서 API 경로를 AWS EC2의 경로로 바꾸어보도록 하겠습니다. 이후에 기존에 존재하던 build 폴더를 제거한 뒤에 다시 yarn build 명 ndb796.tistory.com chinsun9.github.io/2020/10/30/ec2-web-app-https-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0/ ec2 web app https 적용하기 웹에서 위치정보를 활용하고 싶어서 geolocation을 사용했는데, geolocation은 localhost 또는 https에서만 동작했다. 위치정보..
[AWS] AWS에 구축된 nginx에서 mixed content 오류 해결방법 이 방법으로 해결함!! server { listen 80; server_name wani.kr; # 여기에는 기존 wani.kr 서버 세팅들이 들어가 있음. location /other/ { rewrite ^/other(/.*)$ $1 break; # url에서 other 뒤에 있는 URL을 전부 그대로 사용. proxy_pass http://other; proxy_set_header X-Real-IP $remote_addr; # 실제 접속자의 IP를 X-Real-IP 헤더에 입혀서 전송. proxy_redirect off; } } upstream other { server 111.11.11.11:80; server 111.11.11.12:80; } 다른 방법 server { listen 80; serv..
[AWS] AWS https 적용하기 및 http -> https 리다이렉션 하기 developer111.tistory.com/21 [AWS] SSL인증서 발급과 EC2인스턴스에 HTTPS 적용 안녕하세요. 오늘은 SSL 인증서 발급과 HTTPS 구축을 하는 방법에 대해 알아보겠습니다 . 혹시 AWS에 도메인 등록과 도메인과 연결되어 있는 서비스가 없다면 이전 포스팅을 참조해주세요. developer11 developer111.tistory.com happiestmemories.tistory.com/48 [AWS] Https 설정 및 접속하기 1. EC2 LoadBalancer 설정 로드밸런서탭을 클릭합니다. 로드 밸런서 생성 클릭. 어플리케이션 로드밸런서와 클래식 로드밸런서가 있는데, 둘 다 Https로 접속하는데 문제가 없었다. 여기서는 좌측의 어 happiestmemories.t..
[AWS] SSL(HTTPS) 적용 방법 nerd-mix.tistory.com/33?category=855099 AWS SSL(HTTPS) 적용 방법 - 도메인 구입 Route 53(1) aws 서버 작업을 하면서 느끼는 것은 항상 알면 5분정도 소요될 작업을 모르면 몇일이 걸릴 수 있다는 것입니다. 저도 개념을 정확하게 알고있지 않아서 2~3일정도 찾아보면서 고생을 했던 기억이 nerd-mix.tistory.com nerd-mix.tistory.com/34?category=855099 AWS SSL(HTTPS) 적용 방법 - SSL Certificate 발급 ACM(2) 이번에는 aws ACM(AWS Certificate Manager)를 사용하여 SSL 등록을 하는 법을 알아보겠습니다. 1. 도메인을 구입(AWS route53) 2. 도메인..
[Ubuntu] 글자 크기 변경 https://smok95.tistory.com/285 우분투(Ubuntu) 글자 크기 변경 우분투에서 글자크기를 변경하는 방법입니다. gsettings set org.gnome.desktop.interface text-scaling-factor 크기를 50% 크게 하려면 1.5 10% 줄이려면 0.9 와 같이 값을 주시면 됩니다. 기본 크.. smok95.tistory.com gsettings set org.gnome.desktop.interface text-scaling-factor 출처: https://smok95.tistory.com/285 [Only YOUng]
[Ubuntu] 해상도 강제로 변경하는 방법 https://superuser.com/questions/758463/getting-1920x1080-resolution-or-169-aspect-ratio-on-ubuntu-or-linux-mint Getting 1920x1080 resolution or 16:9 aspect ratio on Ubuntu or Linux Mint I am running Ubuntu and Linux Mint in VMWare. In the display settings, none of the 16:9 aspect ratio resolutions are available, including the commonly used 1920x1080 resolution. How can I enable this? superuser.com
[Ubuntu] Gnome 확장 프로그램 https://beebom.com/22-best-gnome-shell-extensions/