2024. 12. 9. 11:18

1. 도메인 설정

2. nginx 설치 후 실행

3. certbot 설치

sudo apt install certbot python3-certbot-nginx

 

4. 인증서 발급

sudo certbot --nginx -d apple.com

 

5. 접속 확인

https://apple.com

 

Apple

Discover the innovative world of Apple and shop everything iPhone, iPad, Apple Watch, Mac, and Apple TV, plus explore accessories, entertainment, and expert device support.

www.apple.com

 

6. http에서 https로 redirection

server {

  listen 80;

  server_name apple.com;

  return 301 https://$host$request_uri;

}

 

7. 설정 후 nginx 재시작 및 테스트

 

sudo nginx -t

sudo systemctl restart nginx

2024. 11. 17. 16:49

sudo rm /etc/NetworkManager/system-connections/*

2024. 10. 10. 12:39

echo $PATH

2024. 9. 3. 15:46

eval "$(ssh-agent -s)"
ssh-add ~/.ssh/apple

 

해당 디렉토리에 새로 생성한 .ssh/apple 추가

 

여기서 apple 은 새로 생성한 apple.pub의 private key 파일

2024. 8. 26. 20:39

lsof -i 8000

2024. 8. 19. 15:17

sudo apt-get install python3-dev default-libmysqlclient-dev

build-essential pkg-config

 

위의 패키지들을 설치 후 다시 설치

2024. 8. 19. 14:02

2024. 7. 29. 20:20

brew --prefix openssl

 

rvm install 2.6.10 --with-openssl-dir=$(brew --prefix openssl)

2024. 7. 28. 14:03

Control + Command + Q

2024. 7. 27. 12:15

(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/leejaeman/.zprofile

 

eval "$(/opt/homebrew/bin/brew shellenv)"

 

 

위의 두 줄을 추가한다

2024. 7. 24. 09:02

sudo vim /etc/xdg/lxsession/LXDE-pi/autostart

2024. 7. 21. 15:17

hostname -I (대문자 아이)

2024. 7. 21. 09:41

1. cmd 창을 관리자 권한으로 실행

 

2. diskpart 입력

 

3. DISKPART> 커맨드 확인

 

4. list disk

 

5. 목록에서 해당 디스크 선택

 

select disk 2

 

6. 디스크 정리

 

clean

 

7. 파티션 생성

 

create partition primary

 

8. 파티션 확인

 

list partition

 

9. 파티션 1 선택

 

select partition 1

 

10. 파티션 활성화

 

active

 

11. 포맷

 

format fs=ntfs quick

 

2024. 7. 15. 21:34

저음에 라즈파이 설치하고 실행한 다음

 

와이파이 잡으려고 할 때 

 

Wi-Fi SSID가 한글이면 깨져서 

 

와이파이를 연결할 수 없다

 

그래서 LAN선으로 연결하던 

 

모바일 핫스팟으로 연결한 다음에

 

다음 명령어를 설치하여 한글패치를 설치한 후

 

리부팅하면 한글이 보이고 해당 와이파이 연결한다

 

sudo apt update

 

sudo apt upgrade 

 

sudo apt install fonts-unfonts-core

2024. 4. 26. 14:16

html 주소 대신 ssh 주소를 사용하면 된다

 

대신 keygen 으로 ssh 퍼블릭 키를 추가하면 된다

 

1. ssh key 생성

 

ssh-keygen -t rsa -b 4096 -C "exam@gmail.com"

 

2. id_rsa 파일과 id_rsa.pub 파일 생성 확인

 

3. github - settings - SSH and GPG Key - New ssh key -

   id_rsa.pub 파일의 내용 복사 - 확인

 

4. .ssh 경로로 clone